2026.15 Hugs & Busses
2026.15 Hugs & Busses
@psyhackological I actually find e.g. #Rakulang's approach quite interesting too. Gradual dynamic typing. For example, using `subset`
```raku
subset Age of Int where 0..120;
my Age $my-age = 25; # OK
my Age $old-age = 150; # Error: Type check failed
subset Username of Str where /^ \w ** 3..15 $/;
my Username $user = “r2d2_detective”; # OK
my Username $bad = “yo”; # Error
```
2026.14 Trim Flip-flops