2025-12-29 15:59:58 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"math"
|
|
|
|
|
)
|
|
|
|
|
|
2025-12-29 16:02:42 +08:00
|
|
|
func add(x int, y int) int {
|
|
|
|
|
return x + y
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-29 15:59:58 +08:00
|
|
|
func main() {
|
|
|
|
|
fmt.Println("You know Pi =", math.Pi)
|
2025-12-29 16:02:42 +08:00
|
|
|
fmt.Println("And You know 1+2 =", add(1, 2))
|
2025-12-29 15:59:58 +08:00
|
|
|
}
|