X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=codea%2Fsnafu_04.0;h=aeff3a00bc922729e8f66d926383310f5f6fc478;hb=b0a180255d33c4f4b1158e03788411e905ed36b4;hp=6cc265b300934e08dff6254f0e474401ad1f24ad;hpb=34a5f2246b3e9b5dc7292f004edefb77f5951bf4;p=testub10.git diff --git a/codea/snafu_04.0 b/codea/snafu_04.0 index 6cc265b..aeff3a0 100644 --- a/codea/snafu_04.0 +++ b/codea/snafu_04.0 @@ -1,13 +1,15 @@ -struct foo bar beef end; +method pvs1(a b) + return (this - a) * b; +end; -method foobar() - return foo.beef; +method pvs2(a b) + return this - (a * b); end; -method foobar2() - return this.bar; +method pvs3(a b) + return (this * a) - b; end; -method foobar3() - return (233 - 31).beef; +method pvs4(a b) + return this * (a - b); end;