langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
|
|
@ -0,0 +1,20 @@
|
|||
select label sl protect cc case cc
|
||||
when 'A' then do
|
||||
say 'the case is A'
|
||||
if logicalCondition then leave sl -- just to use the lable
|
||||
say '...'
|
||||
end
|
||||
when 'B' then do
|
||||
say 'the case is B'
|
||||
say '...'
|
||||
end
|
||||
otherwise
|
||||
say 'selection not recognized'
|
||||
say '...'
|
||||
catch exs = RuntimeException
|
||||
say 'Gronk!'
|
||||
exs.printStackTrace()
|
||||
finally
|
||||
say 'selection done'
|
||||
say 'TTFN'
|
||||
end sl
|
||||
Loading…
Add table
Add a link
Reference in a new issue