-
Notifications
You must be signed in to change notification settings - Fork 5
Installation
Xanderplayz16 edited this page Aug 7, 2022
·
9 revisions
- If you're using windows, download these binaries and run it. Note that these binaries are slower than gcc or clang compiled binaries.
- Alternatively, you can use your local gcc toolchain to build it. The produced binaries are much faster than the MSVC built binaries in the release folder.
- If your using linux, follow the compilation instructions.
- Download the source
- Unzip the zip file.
- Create a directory called
bin
in the same parent directory assrc
. - Run make. It won't work the first time - please run it again. Every successive compilation should be succesful.
- Download the source if you haven't done so already.
- Unzip the zip file if you haven't done so already.
- Create a directory called
bin
in the same parent directory assrc
if you haven't done so already. - Type
make fook
. If you haven't built the program before orbin
is empty it wont work - simply runmake fook
again. **Note: debug is a reserved keyword in make, so fook was simply the first alternative that popped into my head.
Now that you've downloaded and installed cish, please refer to the CLI Usage wiki page for help with cish's command line interface.
Note: There aren't any optimizations being applied in the makefile, so if you want more performance, use the -O3
flag in the gcc commands.
- Getting Started
- The Language and Syntax
- Type Declarations
- Primitive Values
- Collection/Object Values
- Operators
-
The Standard Library
- More docs coming soon after APs.
- FFI and Interoperability
- The Implementation