Search Apps Documentation Source Content File Folder Download Copy Actions Download

storage.gno

0.14 Kb · 11 lines
 1package storage
 2
 3import "strings"
 4
 5var store string
 6
 7func Write(n int) {
 8	store = strings.Repeat("A", n)
 9}
10
11func GetLen() int { return len(store) }