πŸ’¨Running Gauntlet

All Gauntlet files end in .gaunt

Transpiling Code

To transpile Gauntlet code to Go code, simply provide the target .gaunt file. If no errors are found, Gauntlet will put your transpiled code in a .go file (in the same folder as your Gauntlet one) with the corresponding name. In the example below, the file name is MyTestFile.gaunt, which means MyTestFile.go will contain the resulting code.

Example

./gauntlet MyTestFile.gaunt

Run Immediately After Transpiling

You can run your transpiled code immediately after it's created by utilizing the run command.

Example

./gauntlet MyTestFile.gaunt run 

Skipping formatting

By default, your transpiled code will be formatted with go fmt. If, for some reason, you don't want this, you can stop it from happening with the --no-format flag.

Example

./gauntlet MyTestFile.gaunt run --no-format

-OR-

./gauntlet MyTestFile.gaunt --no-format

Last updated