Skip to content

Instantly share code, notes, and snippets.

@Ayeeta
Created August 1, 2020 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ayeeta/1909259a22907bf661a1816fbdf759d9 to your computer and use it in GitHub Desktop.
Save Ayeeta/1909259a22907bf661a1816fbdf759d9 to your computer and use it in GitHub Desktop.
Numbers and operators
val a = 3
val b = 2.4
println(a + b)
println(a / b)
println(a * b)
println(a % b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment