Skip to content

Instantly share code, notes, and snippets.

@mfpiccolo
Created July 21, 2015 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mfpiccolo/58221ae24468ec553b2d to your computer and use it in GitHub Desktop.
Save mfpiccolo/58221ae24468ec553b2d to your computer and use it in GitHub Desktop.
#[no_mangle]
pub extern fn print_chars() {
for i in 33..126 {
println!("{:?}", std::char::from_u32(i).unwrap());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment