mirror of
https://github.com/jamiebuilds/the-super-tiny-compiler.git
synced 2024-10-27 20:34:08 +00:00
9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
|
#!/usr/bin/env node
|
||
|
|
||
|
var meow = require('meow');
|
||
|
var superTinyCompiler = require('../super-tiny-compiler');
|
||
|
var cli = meow();
|
||
|
|
||
|
console.log(superTinyCompiler.compiler(cli.input[0]));
|
||
|
|