strykelang 0.12.21

A highly parallel Perl 5 interpreter written in Rust
Documentation
1
2
3
4
5
h = {}
100_000.times { |i| h[i] = i * 2 }
sum = 0
h.each_key { |k| sum += h[k] }
puts sum