aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/checker/tests/immutable_map.vv
blob: f3e00081d2308b9f80e65500659662dd019beee5 (plain)
1
2
3
4
5
6
7
fn main() {
	m := map[string]int
	m['test']++
	m['test']--
	_ = m.move()
	m.delete('s')
}