Skip to content

Instantly share code, notes, and snippets.

View b10011's full-sized avatar

Niko Järvinen b10011

  • Vire Labs Ltd
  • Tampere, Finland
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@b10011
b10011 / test
Created December 31, 2014 19:31
First Rust tests
// Here it doesn't warn about x not being read.
fn main() {
let x = 5i;
let y = x;
println!("{}",y);
}