Running Splice Programs

Splice programs are written in files with the extension:

.spl

Example file:

hello.spl

Run a program using the Splice runtime:

./splice hello.spl

Example program:

print("Hello from Splice!")

Output:

Hello from Splice!