tst780.mal

来自「一个内存数据库的源代码这是服务器端还有客户端」· MAL 代码 · 共 18 行

MAL
18
字号
#some tests to illustrate function inlining for a modulemodule dummy;function hello():void;	io.print("hello world\n");end hello;function doit(i:int, j:str):int;	io.print(i);	io.print(j);	return doit:= 3;end doit;dummy.hello();z:=dummy.doit(1,"help");optimizer.macro("dummy","hello");

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?