]> git.lizzy.rs Git - rust.git/blob - example/std_example.rs
Implement most 128bit binops
[rust.git] / example / std_example.rs
1 #![feature(core_intrinsics)]
2
3 use std::io::Write;
4
5 fn main() {
6     assert_eq!(1u128 + 2, 3);
7 }