Skip to content

Instantly share code, notes, and snippets.

@Morfly
Created July 18, 2021 14:27
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 Morfly/7b0d6ec04e97666c675eb4f0fe20571e to your computer and use it in GitHub Desktop.
Save Morfly/7b0d6ec04e97666c675eb4f0fe20571e to your computer and use it in GitHub Desktop.
package com.morfly
fun functionWithoutArgs() {
println("Hello from functionWithoutArgs")
}
fun myAmazingFunction(
arg1: kotlin.String?,
arg2: kotlin.collections.List<kotlin.Int?>,
arg3: kotlin.collections.List<kotlin.collections.Map<kotlin.String, *>>,
) {
println("Hello from myAmazingFunction")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment