📄 test_20.mils
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -