Search Apps Documentation Source Content File Folder Download Copy Actions Download

z_2_filetest.gno

0.30 Kb · 22 lines
 1// PKGPATH: gno.land/r/test
 2package test
 3
 4import (
 5	"gno.land/p/nt/avl/v0"
 6)
 7
 8var tree avl.Tree
 9
10func init() {
11	tree.Set("key0", "value0")
12	tree.Set("key1", "value1")
13}
14
15func main(cur realm) {
16	var updated bool
17	updated = tree.Set("key2", "value2")
18	println(updated, tree.Size())
19}
20
21// Output:
22// false 3