TacoScript

TacoScript is an es2015+-isomorphic altjs language, taking inspiration from Coffeescript, Python, and Ruby, and other modern languages.

JavaScript
setTimeout(function() {
  if (true) {
    console.log("Tacos!");
  }
}, 100);
TacoScript
setTimeout(() ->
  if true
    console.log! "Tacos!"
, 100)
npm install -g tacoscript
tacoscript node
🌮  > console.log! 'Hello World'

Try it Out! (super-duper alpha!)