Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

import "math"
import "strconv"
var f float64 = 3.2
var v uint = uint(f)
v
3
uint(f)
3
uint(3.2)
untyped constant {float64 16/5} overflows <uint>
strconv.Itoa(3)
3
math.Max(1, 2)
2