⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 statistics00.mal

📁 一个内存数据库的源代码这是服务器端还有客户端
💻 MAL
字号:
# Testing the statistics tableb:= bat.new(:int,:int);bat.insert(b,1,2);bat.setName(b,"dummy");statistics.open();statistics.dump();# add the bat to the statistics tablestatistics.deposit(b);statistics.update();m:= statistics.getMin("dummy");io.print(m);catch MALException:str;	io.print(MALException);	io.print("could not get minimum from dummy");exit MALException;mx:= statistics.getMax("dummy");io.print(mx);catch MALException:str;	io.print(MALException);	io.print("could not get maximum from dummy");exit MALException;statistics.discard("dummy");statistics.dump();

⌨️ 快捷键说明

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