pluto-lang 0.2.7

A interpreted programming language made in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let arr = [0, 3, 2, 9];
print(arr[3], type(arr));
arr[3] = "23";
print(arr[3], type(arr[3]));
let x = arr[1];
print(x);

let y;
print(y);

if false {
    y = 5;
    print(y);
} else {
    let por = 10000;
    let a = 2;
    print(por);
}