test_20.mils
来自「一个内存数据库的源代码这是服务器端还有客户端」· MILS 代码 · 共 35 行
MILS
35 行
setoid(oid(20000000));# definition and use of Monet procs.# Note that complex procs should normally be prepared in block mode.unknown("hello");#simple procedure with withdrawalproc c() : void { clock().print();}c();undef c;c();# redefinition of existing procedureproc c(): void { clock.print();}c();proc c() : void { cpu().print();}printf("#~BeginVariableOutput~#\n"); c(); printf("#~EndVariableOutput~#\n");proc echo(..any..) : void { $1.print();}echo(1);echo("hello");echo(12,13);echo();proc echo(..any..) : void { $3.print();}echo(1);echo(1,2,3);# handling non-complete proc definition;proc forward() : void { }forward();undef forward;forward();quit();
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?