Skip to content

Instantly share code, notes, and snippets.

@monkey-codes
Created June 9, 2023 22:52
Show Gist options
  • Select an option

  • Save monkey-codes/d6fba661f2bead7bb1be55ef43609b37 to your computer and use it in GitHub Desktop.

Select an option

Save monkey-codes/d6fba661f2bead7bb1be55ef43609b37 to your computer and use it in GitHub Desktop.
val a = sum(1,1)
val b = sum(1,1)
val x = a + b
//substitute a & b with the function call
val y = sum(1,1) + sum(1,1)
x == y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment