1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

bring back map.str()

This commit is contained in:
Alexander Medvednikov
2019-08-05 04:34:12 +02:00
parent 8d3617b3de
commit 5ed338dc2e
3 changed files with 24 additions and 10 deletions

View File

@@ -0,0 +1,6 @@
fn test_mut() {
a := 1
mut b := &a
*b = 10
println(a)
}