Top

Standard Library

The Go version

in the Go version of Z1h can call any Go standard library. All symbols in the library path need to be replaced with underscores, for example,

// The Intn method in the math.rand package is called generating a random number in the range 0-9 
math_rand.Intn(10) 

canimport alias command set library

import math_rand as rand

rand.Intn(100)

create a standard library The structure inside

m = new (sync.Map) 
m.Store("n1", 111) 
print(m.Load("n1"), m.Load("n2")) 

Rust version