'Michael Gagnon, 1999
'This is the shortest program I will ever post on the internet probably
'It just shows you what weird stuff you can output by opening the monitor as
'a file then writing to it, instead of using print.  Study the output
'carefully

OPEN "scrn:" FOR OUTPUT AS #1
CLS

x = 5
d$ = "Mike"

WRITE #1, "x", x, "d$", d$
PRINT
PRINT "x", x, "d$", d$
CLOSE
     

