This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Hillel
hillelwayne.com
did:plc:rvlyeda73kxm7l2weegk73pa
Want to do a quick #rakulang experiment. Given
> my @x = (1..10).combinations(2)
[(2 7) (3 4) ...]
Which of these is more understandable?
1. `my %h = (|@x, |@x>>.reverse).categorize: *[0], as => *[1]`
2. `my Array[Int] %h; for @x -> ($a, $b) { %h.push($a => $b, $b => $a) }`
2025-05-27T17:44:10.249Z