1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/tests/mut_test.v
Alexander Medvednikov 5ed338dc2e bring back map.str()
2019-08-05 04:34:12 +02:00

7 lines
64 B
Go

fn test_mut() {
a := 1
mut b := &a
*b = 10
println(a)
}