Skip to content

Latest commit

 

History

History
executable file
·
74 lines (53 loc) · 1.48 KB

README.md

File metadata and controls

executable file
·
74 lines (53 loc) · 1.48 KB

Spoooky!

Spooky is a simple programming language with an accompanying compiler and virtual machine.

Requirements

To run the compiler, you'll need:

  • Java 14
  • Bazel

Building

Run the following command to build a local version of the compiler:

bazel build //java/se/jsannemo/spooky:spooky

Usage

To compile the source source.spooky into the compiled file exec.spook, run

spooky compile source.spooky exec.spook

To execute the program, run

spooky run exec.spook

Language features

Spooky is a bare-bones C-like language, supporting only basics such as variables, functions, loops, conditionals and simple expressions. While the VM itself is pretty fixed in structure, contributions to the language itself are very welcome. In particular, features such as

  • arrays
  • string literals

would be nice.

External functions

When executing programs, a set of external functions may optionally be provided. These are declared as extern functions in your source and provided by the execution environment.

Example programs

extern void printInt(int i)
extern void print(char ch)

bool isPrime(int n) {
    int p = 1;
    for (int i = 2; i * i <= n; i++) {
        if (n % i == 0) {
            return false;
        }
  }
  return true;
}

void main() {
    for (int n = 2; n < 100; n++) {
        if (isPrime(n)) {
            printInt(n);
            print('\n');
        }
    }
}