Skip to content

Instantly share code, notes, and snippets.

@phatnhse
Last active July 29, 2023 00:22
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 phatnhse/7cd886f5ba92fe44082be58576f31a00 to your computer and use it in GitHub Desktop.
Save phatnhse/7cd886f5ba92fe44082be58576f31a00 to your computer and use it in GitHub Desktop.
inline-without-lamda
fun main() {
print("foo ")
bar()
// prints: foo bar
}
inline fun bar() {
print("bar")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment