home *** CD-ROM | disk | FTP | other *** search
-
- sys(130)=-10 'X placement of input box
- sys(131)=-10 'Y placement of input box
- input "Enter the String." str$ 'allows user input into dist
- sys(130)=-10 'X placement of input box
- sys(131)=-10 'Y placement of input box
- input "Enter the First Number." x1 'allows user input into dist
- sys(130)=-10 'X placement of input box
- sys(131)=-10 'Y placement of input box
- input "Enter the Second Number." x2 'allows user input into dist
- sys(130)=-10 'X placement of input box
- sys(131)=-10 'Y placement of input box
- input "Enter the Third Number." x3 'allows user input into dist
- y1$=x1
- y2$=x2
- y3$=x3
- open "o", 1, "steve.txt"
- print #1, str$;
- print #1, ",";
- print #1, y1$;
- print #1, ",";
- print #1, y2$;
- print #1, ",";
- print #1, y3$
-