This keyword sets up a list of variables of a procedure that can be accessed from absolutely
anywhere in your program.
There is a facility of using strings in procedure definitions.
As with disc names, the "wild card" characters *
and ?
can also
be included. In this case, the *
character is used to mean "match this
with any list of characters in the variable name, until the next control
character is reached", and the ?
character means "match this with any
single character in the variable name".
GLOBAL
or SHARED
should be employed before the first use of the
variable. Only strings may be used for this technique.
SHARED var1[, var2[, ...] ] SHARED "string1"[, "string2"[, ...] ]
Join BASIC 10Liner Contest with ugBASIC!
An interesting competition is held at the beginning of each year: the
BASIC 10Liner Contest.
It is possible to use ugBASIC to participate in the next
"BASIC10Liner" competition, in the following categories:
SHARED ↔ Sr
If you have found a problem with this keyword, if you think there is a bug or, more
simply, you would like it to be improved, open an issue for this example on GitHub.
Thank you!
open an issue
BACK TO KEYWORDS