diff options
Diffstat (limited to 'examples/from.prose')
| -rw-r--r-- | examples/from.prose | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/from.prose b/examples/from.prose new file mode 100644 index 0000000..746371d --- /dev/null +++ b/examples/from.prose @@ -0,0 +1,19 @@ +* 'from' loop example +function foo + procedure + from 0 to 3 + display "\tfoo" + end + +public function main + linkage + status word + storage + iterator ulong + procedure returning status + from 0 to 8 + display "hello" + call foo + end + + set status to 0 |
