Guest User

Untitled

a guest
Oct 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. response := GetArticles()
  2. processResponse(response, printResponse)
  3.  
  4. func printResponse(response <what_type?>) {
  5. for i := range response.Articles {
  6. fmt.Println(response.Articles[i].Title)
  7. }
  8. }
Add Comment
Please, Sign In to add comment