Added < and = test with globals only
[testub10.git] / codea / snafu_06.0
index fc32cff6248d5cd323260e2969327b4841fda532..a4acd84c3a9e2cab1418f9636bedb2507d70d679 100644 (file)
@@ -1,3 +1,5 @@
+struct a b end;
+
 method test64()
        return this - -2139062144;
 end;
@@ -9,3 +11,11 @@ end;
 method num2()
        return 15 - (4 - 2 - 6 - 7);
 end;
+
+method globcmp()
+       return this.a < this.b;
+end;
+
+method globcmp2()
+       return this.a = this.b;
+end;