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

« back to all changes in this revision

Viewing changes to tads/tads3/test/data/getproplist.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
#include <bignum.h>
 
3
 
 
4
main(args)
 
5
{
 
6
    local lst;
 
7
 
 
8
    lst = TadsObject.getPropList();
 
9
    foreach (local prop in lst)
 
10
        "val = <<TadsObject.propType(prop)>>\n";
 
11
 
 
12
    lst = BigNumber.getPropList();
 
13
    foreach (local prop in lst)
 
14
        "val = <<BigNumber.propType(prop)>>\n";
 
15
}
 
16