strykelang 0.12.21

A highly parallel Perl 5 interpreter written in Rust
Documentation
1
2
3
4
5
6
7
8
9
# Fish doesn't have native associative arrays
# Simulate with two parallel arrays
set -g keys
set -g vals
for i in (seq 0 9999)
    set -a keys $i
    set -a vals $i
end
echo (count $keys)