文件名称:lispy-arithmetic:用于执行受 lisp 启发的算术的 Javascript 库
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-19 13:47:43
JavaScript
lispy-算术 一个小型 javascript 库,以受 lisp 启发的方式进行算术运算。 安装 npm install lispy-arithmetic 用法 var la = require ( 'lispy-arithmetic' ) ; la . add ( ) ; // 0 la . add ( 3 ) ; // 3 la . add ( 3 , 2 ) ; // 5 la . add ( 3 , 2 , 4 ) ; // 9 la . sub ( ) ; // 0 la . sub ( 3 ) ; // 3 la . sub ( 3 , 2 ) ; // 1 la . sub ( 7 , 3 , 2 ) ; // 2 la . mult ( ) ; // 1 la . mult ( 3 ) ; // 3 la . mult ( 3 , 2 ) ; // 6 la . m
【文件预览】:
lispy-arithmetic-master
----.gitignore(12B)
----README.md(704B)
----CHANGELOG.md(110B)
----lispy-arithmetic.js(1KB)
----test()
--------lispy-arithmetic.js(2KB)
----package.json(747B)
----Makefile(62B)