2011-05-05 19:56:02 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2012-01-17 16:40:59 -06:00
|
|
|
#[crate_type = "bin"];
|
|
|
|
|
2012-04-05 19:30:26 -05:00
|
|
|
#[no_core];
|
|
|
|
|
2012-06-04 20:34:24 -05:00
|
|
|
#[warn(no_vecs_not_implicitly_copyable)];
|
|
|
|
|
2012-07-11 11:09:08 -05:00
|
|
|
use core(vers = "0.3");
|
|
|
|
use std(vers = "0.3");
|
|
|
|
use syntax(vers = "0.3");
|
2012-04-05 19:30:26 -05:00
|
|
|
|
|
|
|
import core::*;
|
2011-05-05 19:56:02 -05:00
|
|
|
|
|
|
|
// Local Variables:
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
|
|
// End:
|