Last active
September 27, 2018 08:23
-
-
Save tmap/512e21dd33fd2b03c0f907810dec040c to your computer and use it in GitHub Desktop.
VIS - Very Italian Sausages
This file contains 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
from kitchen import seasonings | |
import sausage_making | |
def do_things(): | |
# grind function takes 2 args, meat type and % of the total | |
sausage_making.grind(pork_butt,70) | |
sausage_making.grind(chuck_steak,15) | |
sausage_making.grind(pork_fatback,15) | |
# add spices func takes 2 args, type and % of the total | |
sausage_making.add_spices(seasonings.salt,1) | |
sausage_making.add_spices(seasonings.nutmeg,0.01) | |
sausage_making.add_spices(seasonings.black_pepper,0.03) | |
sausage_making.add_spices(seasonings.cinnamon,0.01) | |
sausage_making.mix() | |
sausage_making.stuff() | |
do_things() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment