X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=codea%2Fsnafu_04.0;h=aeff3a00bc922729e8f66d926383310f5f6fc478;hb=738801cc5462c5ee2d57f5f20db848cf24044ec6;hp=6cc265b300934e08dff6254f0e474401ad1f24ad;hpb=dd01ccfab821664aedfea971092ea2606dd39dae;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;