2013-10-28 17:22:49 -05:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
|
2013-10-29 17:06:13 -05:00
|
|
|
use std::cast;
|
2014-01-09 04:06:55 -06:00
|
|
|
use std::io::stdio::println;
|
2013-10-29 17:06:13 -05:00
|
|
|
|
2013-10-28 17:22:49 -05:00
|
|
|
fn call_it(f: proc(~str) -> ~str) {
|
2014-01-09 04:06:55 -06:00
|
|
|
println!("{}", f(~"Fred"))
|
2013-10-28 17:22:49 -05:00
|
|
|
}
|
|
|
|
|
2013-10-29 17:06:13 -05:00
|
|
|
fn call_a_thunk(f: ||) {
|
|
|
|
f();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call_this(f: |&str|:Send) {
|
|
|
|
f("Hello!");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call_that(f: <'a>|&'a int, &'a int|: -> int) {
|
|
|
|
let (ten, forty_two) = (10, 42);
|
|
|
|
println!("Your lucky number is {}", f(&ten, &forty_two));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call_cramped(f:||->uint,g:<'a>||->&'a uint) {
|
|
|
|
let number = f();
|
|
|
|
let other_number = *g();
|
|
|
|
println!("Ticket {} wins an all-expenses-paid trip to Mountain View", number + other_number);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call_bare(f: fn(&str)) {
|
|
|
|
f("Hello world!")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call_bare_again(f: extern "Rust" fn(&str)) {
|
|
|
|
f("Goodbye world!")
|
|
|
|
}
|
|
|
|
|
2013-10-28 17:22:49 -05:00
|
|
|
pub fn main() {
|
2013-10-29 17:06:13 -05:00
|
|
|
// Procs
|
|
|
|
|
2013-10-28 17:22:49 -05:00
|
|
|
let greeting = ~"Hello ";
|
|
|
|
call_it(proc(s) {
|
|
|
|
greeting + s
|
|
|
|
});
|
|
|
|
|
|
|
|
let greeting = ~"Goodbye ";
|
|
|
|
call_it(proc(s) greeting + s);
|
|
|
|
|
|
|
|
let greeting = ~"How's life, ";
|
|
|
|
call_it(proc(s: ~str) -> ~str {
|
|
|
|
greeting + s
|
|
|
|
});
|
2013-10-29 17:06:13 -05:00
|
|
|
|
|
|
|
// Closures
|
|
|
|
|
2014-01-09 04:06:55 -06:00
|
|
|
call_a_thunk(|| println!("Hello world!"));
|
2013-10-29 17:06:13 -05:00
|
|
|
|
2014-01-09 04:06:55 -06:00
|
|
|
call_this(|s| println!("{}", s));
|
2013-10-29 17:06:13 -05:00
|
|
|
|
|
|
|
call_that(|x, y| *x + *y);
|
|
|
|
|
|
|
|
let z = 100;
|
|
|
|
call_that(|x, y| *x + *y - z);
|
|
|
|
|
|
|
|
call_cramped(|| 1, || unsafe {
|
2013-11-07 22:13:25 -06:00
|
|
|
static a: uint = 100;
|
|
|
|
cast::transmute(&a)
|
2013-10-29 17:06:13 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
// External functions
|
|
|
|
|
|
|
|
call_bare(println);
|
|
|
|
|
|
|
|
call_bare_again(println);
|
2013-10-28 17:22:49 -05:00
|
|
|
}
|
|
|
|
|