<!-- title The Go Programming Language Specification -->
-<!-- subtitle Version of December 8, 2011 -->
+<!-- subtitle Version of December 10, 2011 -->
<!--
TODO
const k = 'w' + 1 // k == 'x' (untyped character constant)
const l = "hi" // l == "hi" (untyped string constant)
const m = string(k) // m == "x" (type string)
-const Σ = 1 - 0.707 // (untyped complex constant)
+const Σ = 1 - 0.707i // (untyped complex constant)
const Δ = Σ + 2.0e-4 // (untyped complex constant)
const Φ = iota*1i - 1/1i // (untyped complex constant)
</pre>