Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
Module Checkit {
|
||||
Let inkey$="hello", dir$="Something Else"
|
||||
\\ using a dot we tell to interpreter to skip internal identifiers,
|
||||
\\ and look for user variables
|
||||
Print .inkey$="hello", .dir$="Something Else"
|
||||
|
||||
Print dir$ ' return current path
|
||||
do
|
||||
Print "wait to press space"
|
||||
Until inkey$=" "
|
||||
}
|
||||
Checkit
|
||||
Module check2 {
|
||||
Global inkey$="ok"
|
||||
Print .inkey$="ok"
|
||||
}
|
||||
check2
|
||||
|
||||
Module Check3 {
|
||||
Group A {
|
||||
Module Check3 {
|
||||
\\ using a dot before the name
|
||||
.inkey$="ok"
|
||||
Print .inkey$="ok"
|
||||
}
|
||||
}
|
||||
A.Check3
|
||||
}
|
||||
Check3
|
||||
Loading…
Add table
Add a link
Reference in a new issue