10 lines
82 B
Go
10 lines
82 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
i := 0xB4
|
|
fmt.Println(i)
|
|
}
|