2010-07-19 19:06:55 -07:00
|
|
|
|
2011-06-15 11:19:50 -07:00
|
|
|
|
|
|
|
|
|
|
|
// -*- rust -*-
|
2011-07-27 14:19:39 +02:00
|
|
|
type clam = {x: @int, y: @int};
|
2011-06-15 11:19:50 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
type fish = {a: @int};
|
2010-07-19 19:06:55 -07:00
|
|
|
|
|
|
|
fn main() {
|
2011-07-27 14:19:39 +02:00
|
|
|
let a: clam = {x: @1, y: @2};
|
|
|
|
let b: clam = {x: @10, y: @20};
|
|
|
|
let z: int = a.x + b.y;
|
2011-06-15 11:19:50 -07:00
|
|
|
log z;
|
|
|
|
assert (z == 21);
|
2011-07-27 14:19:39 +02:00
|
|
|
let forty: fish = {a: @40};
|
|
|
|
let two: fish = {a: @2};
|
|
|
|
let answer: int = forty.a + two.a;
|
2011-06-15 11:19:50 -07:00
|
|
|
log answer;
|
|
|
|
assert (answer == 42);
|
|
|
|
}
|