view Bison-Flex/BasicCompiler-MemoryBase/_test.txt @ 0:db40c85cad7a default tip

upload sample source
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Mon, 09 May 2011 03:11:59 +0900
parents
children
line wrap: on
line source

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

a = rand(10)
b = rand(10)

a = a + b

c = a + 3 * b + 4 * a


if a == b then
	c = a + b
else
	c = a - b
endif

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


while a != 0
	a = a - 1
wend

end