Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
15
Task/Undefined-values/Unicon/undefined-values.unicon
Normal file
15
Task/Undefined-values/Unicon/undefined-values.unicon
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
global G1
|
||||
|
||||
procedure main(arglist)
|
||||
local ML1
|
||||
static MS1
|
||||
undeftest()
|
||||
end
|
||||
|
||||
procedure undeftest(P1)
|
||||
static S1
|
||||
local L1,L2
|
||||
every #write all local, parameter, static, and global variable names
|
||||
write((localnames|paramnames|staticnames|globalnames)(¤t,0)) # ... visible in the current co-expression at this calling level (0)
|
||||
return
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue