hyperreal what's the best way to check the platform (Linux, macOS, or Win32) in Raku? 14:54
Morfent `$*DISTRO.name` and `$*VM.osname` will give a name of some sort 15:08
m:```
say $*DISTRO.name
```
boo
```
bastille% raku -e 'say $*DISTRO.name'
openbsd
```
not sure on what its value will be on linux, but on os x it's `darwin` 15:09
windows can have a handful of values, but `$*DISTRO.is-win` takes care of that
Nemokosch Ubuntu 20.04 15:35
Morfent convenient 🙂 16:00