Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6. var firstName, lastName, jenisKelamin string = "Subhan", "Nizar", "Laki Laki"
  7. favoriteNumber, umur := 9, 22
  8. fmt.Printf("My Biodata :\n First Name : %s\n Last Name: %s\n Sex : %s\n Favorite Number : %d\n Age : %d\n", firstName, lastName, jenisKelamin, favoriteNumber, umur)
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement