ファイル入出力のサンプルです。
main Display.Mode(0) Canvas.Init a=File.OpenWrt("foo") a.Write(100) a.Close() b=File.OpenRead("foo") c=b.Read(Integer) Canvas.WriteLn(c) b.Close() Key.Wait