implang
v3.0.304
Published
The Imp language.
Downloads
3
Readme
Imp
The Imp language 👿
Install
npm i -g implang
Test
// test.imp
import './testpackage.imp';
testpackage("blue")
// testpackage.imp
function hippo(color) {
console.log("I rode a " + color + " hippo!")
}
export hippo;