-- in.cue -- import "math" a: { x: 32.45 y: int y: math.Round(x) } b: { x: 32.45 y: int y: math.Log(x) } -- out/math -- Errors: b.y: conflicting values int and 3.479700443150099001242770375542286 (mismatched types int and float): ./in.cue:11:5 ./in.cue:12:5 Result: a: { x: 32.45 y: 32 } b: { x: 32.45 y: _|_ // b.y: conflicting values int and 3.479700443150099001242770375542286 (mismatched types int and float) }