fgasper
searching Neon…
- 1.▲
- 2.▲
- 3.▲
- 4.▲
- 5.▲
- 6.▲
6 ms·
- 1.▲
> Here's a fun exercise, write a dictionary of arrays. Umm … ok: my %dict = (
foo => [ 1, 2, 3 ],
bar => [ 4, 5, 6 ],
); > Now write a dictionary of 2d arrays. my %dict2d = (
foo => [ [1, 2, 3], [4, 5, 6] ],