UNPKG

nectarjs

Version:

Javascript's God Mode. No VM. No Bytecode. No GC. Just native binaries.

21 lines (18 loc) 189 B
function a(_str) { function _twice() { console.log(_str); } _twice(); } function b(_str) { function _twice() { console.log(_str); } _twice(); } a("Hello "); b("NectarJS ! ");