Reputation: 61
There are some possibilities to utilize standard output (stdout) by Dyalog APL language?
Upvotes: 3
Views: 245
Reputation: 7706
⎕←
Assigning to the system variable ⎕
has the side effect of outputting the assigned value to stdout (including a trailing line break):
⎕←'Hello, World!'
Hello, World!
See APL Wiki: Quad name for more.
Upvotes: 2