22 lines
367 B
Rust
22 lines
367 B
Rust
// -*- rust -*-
|
|
|
|
#[crate_type = "bin"];
|
|
|
|
#[no_core];
|
|
|
|
#[allow(vecs_implicitly_copyable)];
|
|
#[allow(non_camel_case_types)];
|
|
|
|
extern mod core(vers = "0.4");
|
|
extern mod std(vers = "0.4");
|
|
extern mod syntax(vers = "0.4");
|
|
|
|
use core::*;
|
|
|
|
// Local Variables:
|
|
// fill-column: 78;
|
|
// indent-tabs-mode: nil
|
|
// c-basic-offset: 4
|
|
// buffer-file-coding-system: utf-8-unix
|
|
// End:
|