Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created August 18, 2019 08:04
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 jasongorman/16a16f8db0fca6bc7b055c30499fd7d3 to your computer and use it in GitHub Desktop.
Save jasongorman/16a16f8db0fca6bc7b055c30499fd7d3 to your computer and use it in GitHub Desktop.
fun room(width: Double, length: Double): ()->Double {
fun area(): Double {
return width * length
}
return ::area
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment