no.106.prelude

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

PRELUDE
21
字号
# 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#setoid(oid(10000000));	aa_a := oid(10000000);	ba_a := setoid(aa_a);#var w := new( oid, str );	w := new(:oid,:str);#w.import( sprintf("%s/no.106.w.bat",getenv("TSTTRGDIR")) );	ca_a := getenv("TSTTRGDIR");	da_a := sprintf("%s/no.106.w.bat",ca_a);	ea_a := import(w,da_a);#w.print();	fa_a := print(w,);

⌨️ 快捷键说明

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