mirror of
https://github.com/github/semantic.git
synced 2025-01-03 04:51:57 +03:00
9 lines
94 B
Go
9 lines
94 B
Go
|
package main
|
||
|
|
||
|
func main() {
|
||
|
const s = map[string]string{
|
||
|
"hi": "hello",
|
||
|
"bye": "goodbye",
|
||
|
}
|
||
|
}
|