woxi 0.1.0

Interpreter for a subset of the Wolfram Language
Documentation
# Basics

# Comments
$ wo '(* This comment is ignored *) 5'
5
$ wo '5 (* This comment is ignored *)'
5

# Semicolon
$ wo 'x = 2; x'
2
$ wo 'x = 2; x = x + 5'
7

# `Set`: Assigns a value to a variable
$ wo 'Set[x, 5]'
5
$ wo 'Set[x, 5]; x + 3'
8

# `Print`: Prints a value to the console
$ wo 'Print[5]'
5
Null