gokursu/functions/demo1.go
2024-01-14 00:20:11 +03:00

12 lines
192 B
Go

package functions
import "fmt"
func Addition(number1 int, number2 int) {
var total = number1 + number2
fmt.Println("Result : ", total)
}
func SayHello() {
fmt.Println("Hello There !")
}