15 lines
292 B
Java
15 lines
292 B
Java
![]() |
package krusty;
|
||
|
|
||
|
public class Recipe {
|
||
|
public String name;
|
||
|
public Ingredient ingredients[];
|
||
|
|
||
|
public Recipe(String name, Ingredient[] ingredients) {
|
||
|
this.name = name;
|
||
|
this.ingredients = ingredients;
|
||
|
}
|
||
|
|
||
|
public String toString() {
|
||
|
return name;
|
||
|
}
|
||
|
}
|