Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
20
Task/Jump-anywhere/FutureBasic/jump-anywhere.futurebasic
Normal file
20
Task/Jump-anywhere/FutureBasic/jump-anywhere.futurebasic
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
include "ConsoleWindow"
|
||||
|
||||
print "First line."
|
||||
gosub "sub1"
|
||||
print "Fifth line."
|
||||
goto "Almost over"
|
||||
"sub1"
|
||||
print "Second line."
|
||||
gosub "sub2"
|
||||
print "Fourth line."
|
||||
return
|
||||
"Almost over"
|
||||
print "We're just about done..."
|
||||
goto "Outa here"
|
||||
"sub2"
|
||||
print "Third line."
|
||||
return
|
||||
"Outa here"
|
||||
print "... with goto and gosub, thankfully."
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue