12 lines
235 B
Go
12 lines
235 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
// Given a character value in your language, print its code
|
|
fmt.Printf("%d\n", 'A') // prt 65
|
|
// Given a code, print out the corresponding character.
|
|
fmt.Printf("%c\n", 65) // prt A
|
|
}
|