spaik 0.3.1

The SPAIK Programming Language
Documentation
1
2
3
4
5
6
7
/// Rust doesn't have a good REPL, this is my substitute. Changes to this file
/// should not be commited to git.

pub fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("Hello, World!");
    Ok(())
}