In some scripts it's common to use the pseudo-array construct as a substitute for proper arrays when the shell lacks support for them: ```shell set -- x y z ``` Currently that would make `babelfish` produce the exact same line, which will break. Ideally, we'd be translating it to the equivalent: ```fish set argv x y z ``` See: [POSIX.1-2017: §2.15 Special Built-In Utilities](https://pubs.opengroup.org/onlinepubs/9799919799/utilities/V3_chap02.html#tag_19_26)