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
21
Task/Enumerations/FutureBasic/enumerations.futurebasic
Normal file
21
Task/Enumerations/FutureBasic/enumerations.futurebasic
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
include "ConsoleWindow"
|
||||
|
||||
begin enum 1
|
||||
_apple
|
||||
_banana
|
||||
_cherry
|
||||
end enum
|
||||
|
||||
begin enum
|
||||
_appleExplicit = 10
|
||||
_bananaExplicit = 15
|
||||
_cherryExplicit = 30
|
||||
end enum
|
||||
|
||||
print "_apple ="; _apple
|
||||
print "_banana ="; _banana
|
||||
print "_cherry ="; _cherry
|
||||
print
|
||||
print "_appleExplicit ="; _appleExplicit
|
||||
print "_bananaExplicit ="; _bananaExplicit
|
||||
print "_cherryExplicit ="; _cherryExplicit
|
||||
Loading…
Add table
Add a link
Reference in a new issue