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

« back to all changes in this revision

Viewing changes to tads/tads3/test/data/nbsp.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
#charset "us-ascii"
 
2
 
 
3
foo: PreinitObject
 
4
    execute()
 
5
    {
 
6
        setVal('testing');
 
7
    }
 
8
 
 
9
    setVal(val)
 
10
    {
 
11
        self.val = val;
 
12
    }
 
13
 
 
14
    val = nil
 
15
 
 
16
    bad = (self.val)
 
17
    good()� { return val; }
 
18
;
 
19
 
 
20
main(args)
 
21
{
 
22
    local x = /*nbsp:*/�1;
 
23
    "Testing nbsp: [�]: x = <<x>>\n";
 
24
}