seal A small REPL with a simple syntax to experiment with Rust. Examples Basic operations > 1 + 2 3 > 1 - 2 -1 > 1 / 2 0 > 0 + (1 * 2) 2 Declaring and using variables > x = 1 1 > y = 3*(x + 2) 9