Improve pass-by-reference test

This commit is contained in:
Alex Bethel 2021-06-13 09:53:33 -05:00
parent 817ca7cf9a
commit da53ba4040

View file

@ -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;
}