Perl6 &open semantics are based on POSIX, with the following mapping:
:mode<ro> --> O_RDONLY
:mode<wo> --> O_WRONLY
:mode<rw> --> O_RDWR
:create --> O_CREAT
:append --> O_APPEND
:truncate --> O_TRUNC
:exclusive --> O_EXCL
For convenience, the following shortcuts are provided:
:r --> :mode<ro>
:w --> :mode<wo>, :create, :truncate
:x --> :mode<wo>, :create, :exclusive
:a --> :mode<wo>, :create, :append
:update --> :mode<rw>
:rw --> :mode<rw>, :create
:rx --> :mode<rw>, :create, :exclusive
:ra --> :mode<rw>, :create, :append
Not all platforms supported by Rakudo (eg Windows, JVM, not even POSIX itself) support all possible combinations of modes and flags, so only the combinations above are guaranteed to behave as expected (or are at least supposed to behave that way).
Long story short, a simple :a absolutely should do what you want it to do, and it does so on my Windows box. If it really truncates on MacOS, I'd consider that a bug.
:w same as specifying :mode<wo>, :create, :truncate. So behavior exactly up to spec. When you specify:w,:appendis dropped in favor of:truncate. Use:ainstead of:w :append:athough.perl6 append-file.p6 1 20, the file contains:2 3 5 7 11 13 17 19Thenperl6 append-file.p6 200 300and it appends19 211 223 227 229 233 239 241 251 257 263 269 271 277 281 283 293(I include the 19 here) With respect to ignoring something, well, that's a different piece of cloth altogether. Maybe raising an exception or a warning causes more confusion.open $file, :ashould not truncate, and does not on the Perl6 version I built last month (though I'm on Windows, not MacOS).