Sometimes you don't need all the values a function returns. Use the blank identifier _ to discard unwanted values:
q, _ := divide(10, 3) // ignore remainder
_, r := divide(10, 3) // ignore quotient
Without the blank identifier, Go would complain about unused variables. The _ tells Go you're intentionally ignoring that value. Use it when you only need some of what a function returns.