Pavlo
Pavlo

Reputation: 61

How to access the standard output stream (stdout) from Dyalog APL

There are some possibilities to utilize standard output (stdout) by Dyalog APL language?

Upvotes: 3

Views: 245

Answers (1)

Adám
Adám

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!

Try it online!

See APL Wiki: Quad name for more.

Upvotes: 2

Related Questions