mirror of https://github.com/tinygo-org/tinygo.git
wasmstm32webassemblymicrocontrollerarmavrspiwasiadafruitarduinocircuitplayground-expressgpioi2cllvmmicrobitnrf51nrf52nrf52840samd21tinygo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
605 B
29 lines
605 B
package main
|
|
|
|
func main() {
|
|
// The new min/max builtins.
|
|
ia := 1
|
|
ib := 5
|
|
ic := -3
|
|
fa := 1.0
|
|
fb := 5.0
|
|
fc := -3.0
|
|
println("min/max:", min(ia, ib, ic), max(ia, ib, ic))
|
|
println("min/max:", min(fa, fb, fc), max(fa, fb, fc))
|
|
|
|
// The clear builtin, for slices.
|
|
s := []int{1, 2, 3, 4, 5}
|
|
clear(s[:3])
|
|
println("cleared s[:3]:", s[0], s[1], s[2], s[3], s[4])
|
|
|
|
// The clear builtin, for maps.
|
|
m := map[int]string{
|
|
1: "one",
|
|
2: "two",
|
|
3: "three",
|
|
}
|
|
clear(m)
|
|
println("cleared map:", m[1], m[2], m[3], len(m))
|
|
m[4] = "four"
|
|
println("added to cleared map:", m[1], m[2], m[3], m[4], len(m))
|
|
}
|
|
|