blob: 18aec2d027adee0a7684f8522663488d93c54b61 [file] [log] [blame] [edit]
-- Format the number as a decimal --
package fix
import . "fmt"
func _(x uint64) {
Println(Sprint(x)) // want `conversion from uint64 to string yields...`
}
-- Convert a single rune to a string --
package fix
import . "fmt"
func _(x uint64) {
Println(string(rune(x))) // want `conversion from uint64 to string yields...`
}