strykelang 0.8.2

A highly parallel Perl 5 interpreter written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local data = {}
for i = 1, 500000 do
    data[i] = i
end
local doubled = {}
for i = 1, #data do
    doubled[i] = data[i] * 2
end
local count = 0
for i = 1, #doubled do
    if doubled[i] % 2 == 0 then
        count = count + 1
    end
end
print(count)