~ubuntu-branches/ubuntu/wily/gargoyle-free/wily-proposed

« back to all changes in this revision

Viewing changes to tads/tads3/test/data/op_prec.t

  • Committer: Bazaar Package Importer
  • Author(s): Sylvain Beucler
  • Date: 2009-09-11 20:09:43 UTC
  • Revision ID: james.westby@ubuntu.com-20090911200943-idgzoyupq6650zpn
Tags: upstream-2009-08-25
ImportĀ upstreamĀ versionĀ 2009-08-25

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "tads.h"
 
2
 
 
3
myObj: object
 
4
    bar = 1
 
5
;
 
6
 
 
7
main(args)
 
8
{
 
9
    local x = myObj;
 
10
    local y = [1, 2, 3];
 
11
 
 
12
    "x.bar = <<x.bar>>, -x.bar = <<-x.bar>>\n";
 
13
    "y[2] = <<y[2]>>, ~y[2] = <<~y[2]>>\n";
 
14
}