Download this file
21 lines (20 with data), 245 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 | 'test.bas
'25/02/2002
pen on
f=freefile
dim num(6)
dim name$(3)
Kill "MEMO:golfmatch"
cls
for i=1 to 2
input "name",name$(i)
next i
cls
open "MEMO:golfmatch" for output as #f
for i = 1 to 2
print #f, name$(i)
next i
close #f
pen off
end
pen off
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.