Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created August 3, 2020 12:09
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 BMU-Verlag/06f7d3ef379b2b608ab2859318c80ea6 to your computer and use it in GitHub Desktop.
Save BMU-Verlag/06f7d3ef379b2b608ab2859318c80ea6 to your computer and use it in GitHub Desktop.
fun addieren(a: Int, b: Int): Int {
return a + b
}
fun multiplizieren(a: Int, b: Int) = a * b
fun main() {
println(addieren (2, 3))
println(multiplizieren(2, 3))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment