Advertisement
hendriawan

pembuatan fungsi di go

Sep 3rd, 2020
1,345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.48 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4.     "fmt"
  5.     "reflect"
  6. )
  7.  
  8. func main() {
  9.     A := 3
  10.     B := 2
  11.     fmt.Println("A=",A)
  12.     fmt.Println("B=",B)
  13.     hasilTambah := tambah(A, B)
  14.     fmt.Println("x+y", hasilTambah)
  15.     kali(A, B)
  16.     // fmt.Println(kali(A, B))
  17. }
  18.  
  19. // fungsi dengan parameter input
  20. func kali(x int, y int) {
  21.     result := x * y
  22.     fmt.Println("x*y: ", result, reflect.TypeOf(result))
  23. }
  24.  
  25. // fungsi dengan parameter input dan output
  26. func tambah(x int, y int) int {
  27.     result := x + y
  28.     return result
  29. }
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement