Improve pass-by-reference test

This commit is contained in:
Alex Bethel 2021-06-13 09:53:33 -05:00
parent d59b75fdb3
commit d80c138735

View file

@ -12,6 +12,14 @@ var bar = "world";
swap(foo, bar);
owo Should print "hello", then "world"
bar print;
foo print;
if (foo != "world") {
"FAILED" 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;
}