artiq/artiq/runtime.rs/src/lib.rs

12 lines
164 B
Rust
Raw Normal View History

2016-08-17 16:39:05 +08:00
#![no_std]
#[macro_use]
extern crate std_artiq as std;
use std::prelude::v1::*;
#[no_mangle]
pub extern "C" fn rust_main() {
println!("hello from rust!");
}