2012-10-02 20:15:02 -05:00
|
|
|
#[allow(ctypes)];
|
|
|
|
#[allow(heap_memory)];
|
|
|
|
#[allow(implicit_copies)];
|
|
|
|
#[allow(managed_heap_memory)];
|
|
|
|
#[allow(non_camel_case_types)];
|
|
|
|
#[allow(non_implicitly_copyable_typarams)];
|
|
|
|
#[allow(owned_heap_memory)];
|
|
|
|
#[allow(path_statement)];
|
|
|
|
#[allow(structural_records)];
|
|
|
|
#[allow(unrecognized_lint)];
|
|
|
|
#[allow(unused_imports)];
|
|
|
|
#[allow(vecs_implicitly_copyable)];
|
|
|
|
#[allow(while_true)];
|
|
|
|
|
|
|
|
extern mod std;
|
|
|
|
|
2012-10-30 22:21:28 -05:00
|
|
|
fn print<T>(result: T) {
|
2012-10-02 20:15:02 -05:00
|
|
|
io::println(fmt!("%?", result));
|
|
|
|
}
|