Insert types.v on 03_variables directory
This commit is contained in:
parent
474813d8e8
commit
68cb4d6cc7
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
|
||||
|
||||
fn main()
|
||||
{
|
||||
mut integer := int(20)
|
||||
mut flt32 := f32(2)
|
||||
mut flt64 := f64(3)
|
||||
|
||||
println(flt32)
|
||||
println(integer)
|
||||
}
|
||||
|
|
@ -1,6 +1,3 @@
|
|||
|
||||
|
||||
|
||||
pub fn main() {
|
||||
println('oi')
|
||||
}
|
||||
Loading…
Reference in New Issue