13 lines
221 B
Plaintext
13 lines
221 B
Plaintext
general {
|
|
funcon-term: sequential (
|
|
check-true(is-equal(second(1,2), 2))
|
|
, check-true(is-equal(second(1,2,3), 2))
|
|
, print "OK"
|
|
);
|
|
}
|
|
|
|
tests {
|
|
result-term : null-value;
|
|
standard-out : ["OK"];
|
|
}
|