summaryrefslogtreecommitdiff
path: root/examples/io.fy
blob: fda514da492d4ded829df4f5e888a2df62e459c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#*
 * Simple I/O examples. Currently only output is supported.
 *#

# Print out 10 followed by a newline
say 10; 

# Print out 20 without a newline followed
put 20;

# Print out a newline
ln;