2.0.0 • Published 4 years ago
cce-cl v2.0.0
C - Compile and Execute
Compile and execute a C file, all at once.
Installation
With Yarn (recomended)
yarn global add cce-clWith NPM
npm install -g cce-clUsage
cce <file> [options]Runs CCE for the given file, with the given options.
cce --helpProvides a complete list of options.
Examples
cce test.cCompiles and executes the file test.c.
cce test.c --save --execute-arguments "John 10"Compiles and executes the file test.c with the arguments John and 10, saving the compiled file after execution.