implang

The Imp language.

Usage no npm install needed!

<script type="module">
  import implang from 'https://cdn.skypack.dev/implang';
</script>

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;