Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
/ Storm-old Public archive

Storm is a general-purpose programming language.

License

Notifications You must be signed in to change notification settings

abbyonstott/Storm-old

Repository files navigation

Storm

Storm is a general-purpose programming language.

For contributors, read docs/contributing.md

Build Instructions

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/

How to use

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>