A small REPL with a simple syntax to experiment with Rust.
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
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A small REPL with a simple syntax to experiment with Rust.
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