view Bison-Flex/BasicCompiler-MemoryBase/UTF8/test.txt @ 7:23b18b61c35f draft default tip

analyser
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 05 Feb 2013 07:36:02 +0900
parents 805d39d28230
children
line wrap: on
line source

'コメントテスト
rem これもコメント

' 代入とrand関数のテスト
a = rand(10)
b = rand(10)

print a, b

' if文
if a == b then
	a = 100
else
	b = 100
endif

print a, b

' for文
for i=1 to 10
	a = a + 1
next

print a, b

' while文
while a != 0
	a = a - 1
wend

print a, b

end