Storm is a general-purpose programming language.
For contributors, read docs/contributing.md
Requires CMake 3.0 or higher
On Unix:
cd build
autoreconf --install
./configure
make -j$(nproc)
# if you want to install
sudo make install
On Windows:
Install MSVC.exe and MSBUILD.exe
CLI:
cd Windows
msbuild .
Visual Studio:
Load the solution located in Windows/
Compile a Program
storm -c <file_name> <binary_name>
Binary names are usually followed by .stormc, but the file extension is up to the person compiling
In this project they should always have the .stormc file extension
Run a Program
storm <binary_name>