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

57 lines
1016 B
Rust
Raw Normal View History

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