annotate samples/compilerbug_001.tp @ 294:d1dc2d70bdfd

Move OS module out of backend Javascript into a proper module file. Add normal bytearray to bytearray module. Add read:to method to os module for reading into a bytearray.
author Michael Pavone <pavone@retrodev.com>
date Thu, 24 Jul 2014 21:58:26 -0700
parents 90542a7077a9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
51
90542a7077a9 adding compiler bug test case.
William Morgan <bill@mrgn.org>
parents:
diff changeset
1 #{
90542a7077a9 adding compiler bug test case.
William Morgan <bill@mrgn.org>
parents:
diff changeset
2 value <- 0
90542a7077a9 adding compiler bug test case.
William Morgan <bill@mrgn.org>
parents:
diff changeset
3
90542a7077a9 adding compiler bug test case.
William Morgan <bill@mrgn.org>
parents:
diff changeset
4 main <- {
90542a7077a9 adding compiler bug test case.
William Morgan <bill@mrgn.org>
parents:
diff changeset
5 f <- {value}
90542a7077a9 adding compiler bug test case.
William Morgan <bill@mrgn.org>
parents:
diff changeset
6 f:
90542a7077a9 adding compiler bug test case.
William Morgan <bill@mrgn.org>
parents:
diff changeset
7 }
90542a7077a9 adding compiler bug test case.
William Morgan <bill@mrgn.org>
parents:
diff changeset
8 }