Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 18, 2019 18:15
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 parzibyte/98510d47661d3a508f6715e17c85f2e9 to your computer and use it in GitHub Desktop.
Save parzibyte/98510d47661d3a508f6715e17c85f2e9 to your computer and use it in GitHub Desktop.
fun agregarPostAlBlog(id: Int, autor: String, titulo: String, contenido: String, fechaCreacion: String, permiteComentarios: Boolean, conteoComentarios: Int){
// Aquí crear el post ;)
}
agregarPostAlBlog(
autor = "parzibyte",
titulo = "Funciones en Kotlin",
conteoComentarios = 0,
contenido = "Bla bla",
fechaCreacion = "2019-07-18",
id = 1,
permiteComentarios = false
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment