Skip to content

Instantly share code, notes, and snippets.

@yogacp
Created June 28, 2018 11:34
Show Gist options
  • Save yogacp/403e832860969dd06b1df5f72957d46d to your computer and use it in GitHub Desktop.
Save yogacp/403e832860969dd06b1df5f72957d46d to your computer and use it in GitHub Desktop.
First Movie Dsl
/**
* Create function to store movies data
*/
fun movies(inputs: (Movies) -> Unit): Movies {
val movie = Movies()
inputs(movie)
return movie
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment