-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Squirrel Compiler for squirrel 3.1 | ||
|
||
## Installing | ||
|
||
1. Build with Visual Studio 2013. | ||
2. ? | ||
3. PROFIT | ||
|
||
## Compiling squirrel scripts | ||
|
||
The very simple commandline compiler this is, has merely two arguments | ||
|
||
% sq-compiler [source file] [destination file] | ||
|
||
So if you ever desired to compile `my-script.nut` to `my-compiled-script.nut` | ||
you would use the following command-line code: | ||
|
||
% sq-compiler my-script.nut my-compiled-script.nut | ||
|
||
Errors can have the following two formats: | ||
|
||
Error: $generic-error # not generated by squirrel but this program | ||
Error in $filename:$line:$column$, $error # generated by this compiler |