gooberscript
v0.1.0
Published
The GooberScript Toolchain
Maintainers
Readme
🚀 GooberScript Toolchain
Welcome to GooberScript, the most enthusiastic programming language!
Quick Start
- Install dependencies:
npm install - Build the toolchain:
npm run build - Run your first GooberScript file:
# Create examples/hello.goob echo "dear goober; holler \"heckin' world\" ya; gimme sayHi() { yippee; holler \"hi from a function!\" ya; } sayHi() ya; thanks, goober;" > examples/hello.goob # Compile it! node dist/cli.js examples/hello.goob -o examples/hello.js # Run the output node examples/hello.js
CLI Usage (goobc)
The goobc command transpiles .goob files to JavaScript.
goobc [options] <inputFile>
Options:
-o, --out <file> Specify the output file
--minify Minify the output (TBD)
--sourcemap Generate a sourcemap (TBD)
--watch Watch for changes (TBD)
-h, --help display help for command