rust/src/test/run-pass/basic.rs

56 lines
992 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
use std;
import comm;
import comm::send;
import comm::chan;
import comm::recv;
import task;
2011-10-20 22:34:04 -05:00
fn a(c: chan<int>) {
2011-07-27 07:19:39 -05:00
if true {
#debug("task a");
#debug("task a");
#debug("task a");
#debug("task a");
#debug("task a");
2011-07-27 07:19:39 -05:00
}
send(c, 10);
2010-06-23 23:03:09 -05:00
}
2011-07-27 07:19:39 -05:00
fn k(x: int) -> int { ret 15; }
2010-06-23 23:03:09 -05:00
fn g(x: int, y: str) -> int {
log(debug, x);
log(debug, y);
let z: int = k(1);
ret z;
}
2010-06-23 23:03:09 -05:00
2011-04-19 15:35:49 -05:00
fn main() {
let mut n: int = 2 + 3 * 7;
2011-07-27 07:19:39 -05:00
let s: str = "hello there";
let p = comm::port();
2012-01-04 23:14:53 -06:00
let ch = comm::chan(p);
task::spawn {|| a(ch); };
task::spawn {|| b(ch); };
let mut x: int = 10;
2011-07-27 07:19:39 -05:00
x = g(n, s);
log(debug, x);
n = recv(p);
n = recv(p);
#debug("children finished, root finishing");
2010-06-23 23:03:09 -05:00
}
2011-10-20 22:34:04 -05:00
fn b(c: chan<int>) {
2011-07-27 07:19:39 -05:00
if true {
#debug("task b");
#debug("task b");
#debug("task b");
#debug("task b");
#debug("task b");
#debug("task b");
2011-07-27 07:19:39 -05:00
}
send(c, 10);
}