Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. func sumOfTwoValues(firstValue: Int, secondValue: Int) {
  2. let sum = firstValue + secondValue
  3. print(sum)
  4. }
  5.  
  6. sumOfTwoValues(firstValue: 3, secondValue: 6)
  7. //Output: 9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement