test_03.mal
来自「一个内存数据库的源代码这是服务器端还有客户端」· MAL 代码 · 共 29 行
MAL
29 行
# Monet Mil to Mal compiler# Copyright (c) 2001-2004, CWI. All rights reserved.#Predefined code segment#The compiler can not guarantee an accurate compilation,#because MIL unlike MAL is a dynamically typed language.#A few guidelines to maximize usefullness.#- make the type of variables explicit, in particular 'nil'#- upon advice of M2m to remap identifiers, change it in your program directly#use the "mil_schema" for additional support routines# io.print("setoid(oid(20000000));"); aa_a := calc.oid(20000000); ba_a := calc.setoid(aa_a);# io.print("#test basic functionality of the BAT library.\n");# io.print("#focussed on temporary reversal of roles.\n");# io.print("var b:= bat.new(int,str);"); b := bat.new(nil:int,nil:str);# io.print("b.insert(1,\"15\");"); ca_a := bat.insert(b,1,"15");# io.print("b.print();"); da_a := io.print(b);# io.print("b.reverse().print();"); ea_a := bat.reverse(b); fa_a := io.print(ea_a);# io.print("b.print();"); ga_a := io.print(b);# io.print("quit();"); ha_a := clients.quit();
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?