Skip to content

Commit 53658b0

Browse files
authored
recipe.c (hard coded recipes)
1 parent 40fc5cb commit 53658b0

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

code/recipe.c

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#include "recipe.h"
2+
3+
Recipe recipe_1 = {
4+
"MOJITO",
5+
50,
6+
100,
7+
20
8+
};
9+
10+
Recipe recipe_2 = {
11+
"MARG",
12+
45,
13+
30,
14+
15
15+
};
16+
17+
Recipe recipe_3 = {
18+
"MULE",
19+
50,
20+
120,
21+
10
22+
};

0 commit comments

Comments
 (0)