Home › Forums › KX Academy › Scripting and logging question › Reply To: Scripting and logging question
-
If a line ends in ; then the output is not displayed.
$ cat test.q
a:til 10
f:{x*y}
f[a;5]; /Not displayed
f[a;200] /Displayed
f[a;.01]; /Not displayed
$ q test.q
0 200 400 600 800 1000 1200 1400 1600 1800
q)