Last active
September 12, 2022 21:02
-
-
Save pedrogk/d01db48836d3534e4c74357af30e2d0c to your computer and use it in GitHub Desktop.
Receta pozole para mensaje en redes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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