Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
var x = loggedin ? sessionid : -1
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
if (value > 40) {
|
||||
println ("OK")
|
||||
} elif (value < 20) {
|
||||
println ("FAILED")
|
||||
} else {
|
||||
println ("RETRY")
|
||||
}
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
switch (arg) {
|
||||
case "-d":
|
||||
case "--debug":
|
||||
debug = true
|
||||
break
|
||||
case "-f":
|
||||
force = true
|
||||
break
|
||||
default:
|
||||
throw "Unknown option " + arg
|
||||
}
|
||||
|
||||
switch (value) {
|
||||
case > 40:
|
||||
println ("OK")
|
||||
break
|
||||
case < 20:
|
||||
println ("FAILED")
|
||||
break
|
||||
case in 50..59:
|
||||
println ("WIERD")
|
||||
// fall through
|
||||
default:
|
||||
println ("RETRY")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue