Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
if x := every i := 1 to *container do { # * is the 'length' operator
|
||||
if container[i] ~== y then
|
||||
write("item ", i, " is not interesting")
|
||||
else
|
||||
break a
|
||||
} then
|
||||
write("found item ", x)
|
||||
else
|
||||
write("did not find an item")
|
||||
|
|
@ -0,0 +1 @@
|
|||
break break next
|
||||
|
|
@ -0,0 +1 @@
|
|||
x := ftn()
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
&error := 1
|
||||
mayErrorOut()
|
||||
if &error == 1 then
|
||||
&error := 0 # clear the trap
|
||||
else {
|
||||
# deal with the fault
|
||||
handleError(&errornumber, &errortext, &errorvalue) # keyword values containing facts about the failure
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
runerr(errnumber, errorvalue) # choose an error number and supply the offending value
|
||||
Loading…
Add table
Add a link
Reference in a new issue