📄 test_30.mils
字号:
setoid(oid(20000000));# definition and use of Monet procs and variables# 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();# block administration# how about variables in a block{ var i:=123; print(i);}# and in a procedure# we choose variables names containint 'z' since there are not# standard variable names that contain 'z'proc xyz() : void {var z1; z1:=23; var z2:=234; vars("z");}xyz();quit();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -