Skip to content

Instantly share code, notes, and snippets.

@ZhangHanDong
Forked from rust-play/playground.rs
Created January 8, 2019 06:17
Show Gist options
  • Save ZhangHanDong/12f1cf6bcfa0587c3570a055fd6f0c8a to your computer and use it in GitHub Desktop.
Save ZhangHanDong/12f1cf6bcfa0587c3570a055fd6f0c8a to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
#![no_std]
#![]
extern crate libc;
// #[no_std]
extern {
pub fn printf(format: *const u8, ...) -> i32;
}
fn main(){
println!("hello");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment