RBE primitives

This commit is contained in:
Dan Buch 2021-09-10 14:09:54 -04:00
parent 60da2e20dc
commit f574628afc
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7
2 changed files with 21 additions and 0 deletions

View File

@ -1,2 +1,4 @@
/hello/*
/primitives/*
!/hello/*.rs
!/primitives/*.rs

View File

@ -0,0 +1,19 @@
fn main() {
let logical: bool = true;
let a_float: f64 = 1.0;
let an_integer = 5i32;
let default_float = 3.0;
let default_integer = 7;
let mut inferred_type = 12;
inferred_type = 4294967296i64;
let mut mutable = 12;
mutable = 21;
// mutable = true;
let mutable = true;
}