old-mumei/test.mtl

7 lines
63 B
Text
Raw Permalink Normal View History

2016-07-02 15:11:21 +00:00
FUNCTION main()
a(5)
2016-07-02 12:11:08 +00:00
END
2016-07-02 15:11:21 +00:00
FUNCTION a(i)
puti(i)
a(i+1)
2016-07-02 12:11:08 +00:00
END