Hi. Is there a way to suppress a trailing new line in the output? ```sh apl --silent --noCIN --noCONT --OFF --noSV -f main.apl ```
```apl:main.apl ⎕←'Hello!' ``` ```txt:output Hello! ``` For example, Dyalog doesn’t add an extra new line: ```sh dyalogscript main.apl ``` ```txt:output Hello! ``` Koki Fushimi