0.4.1 • Published 5 years ago
longerjs v0.4.1
Install
One command is enough to download.
npm i longerjsUsage
longerjs file.js compile.jsAdvantage with longerjs
Echo
Input:
echo("test"); // (12 character)Output:
console.log("test"); // (19 character)Function
Input:
def test() {
echo("test")
} // (26 character)Output:
function test() {
console.log("test");
} // (38 character)