There are some possibilities to utilize standard output (stdout) by Dyalog APL language?
Asked
Active
Viewed 164 times
1 Answers
2
⎕←
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.

Adám
- 6,573
- 20
- 37