Call a function: Difference between revisions

Content added Content deleted
Line 2,423: Line 2,423:


<lang langur>for .key in sort(keys .tests) {
<lang langur>for .key in sort(keys .tests) {
val .pass = .isintest(.key)
...
write .key, ": ", .pass
writeln if(.pass == .tests[.key]: ""; " (ISIN TEST FAILED)")
}
}
# unbounded list on keys bounded by closing parenthesis of sort</lang>
# unbounded list on keys bounded by closing parenthesis of sort</lang>