Skip to content

Instantly share code, notes, and snippets.

@pedrogk
Last active September 12, 2022 21:02
Show Gist options
  • Save pedrogk/d01db48836d3534e4c74357af30e2d0c to your computer and use it in GitHub Desktop.
Save pedrogk/d01db48836d3534e4c74357af30e2d0c to your computer and use it in GitHub Desktop.
Receta pozole para mensaje en redes
let carne = "surtida de puerco"
if (cuidandoLinea)
carne = "pollo"
fetch("olla con agua")
.then( () => agregar(["maiz pozolero", "ajo", "sal"]) )
.then( () => hervir({ minutos: 60 }))
.then( () => agregar([carne, "salsa preparada"]))
.then( () => hervir({ minutos: 90 }))
.then( () => servir(["lechuga", "orégano", "rábano", "limón"]))
.then( () => console.log("¡VIVA MÉXICO!"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment