Improve pass-by-reference test
This commit is contained in:
parent
d59b75fdb3
commit
d80c138735
|
@ -12,6 +12,14 @@ var bar = "world";
|
||||||
|
|
||||||
swap(foo, bar);
|
swap(foo, bar);
|
||||||
|
|
||||||
owo Should print "hello", then "world"
|
if (foo != "world") {
|
||||||
bar print;
|
"FAILED" print;
|
||||||
foo print;
|
"foo should be 'world', is actually:" print;
|
||||||
|
foo print;
|
||||||
|
}
|
||||||
|
|
||||||
|
owo AbleScript doesn't have an `else` statement (yet), so we get to
|
||||||
|
owo check the reverse condition.
|
||||||
|
if (foo == "world") {
|
||||||
|
"OK" print;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue