mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
17 lines
142 B
Go
17 lines
142 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
a := "hello"
|
|
|
|
{
|
|
a := "world"
|
|
fmt.Printf("in: %v\n", a)
|
|
}
|
|
|
|
fmt.Printf("out: %v\n", a)
|
|
}
|