当前位置: 首页> 英语翻译> 正文

goulash是什么 goulash的翻译

  • 作者: 用户投稿
  • 2023-04-14 11:27:33
  • 69

Goulash是一种来自中欧的传统热食,它由各种蔬菜和肉类组成。

1.历史背景:Goulash最初出现在匈牙利,但随着时间的流逝,它已经被其他欧洲国家所采用,如德国、奥地利、捷克、斯洛伐克和斯洛文尼亚。

2.配料:Goulash通常由牛肉、猪肉、香肠、土豆、胡萝卜、洋葱、番茄酱和大蒜组成,也可以加入其他蔬菜,如芹菜、西兰花和辣椒。

3.烹饪方法:将所有的配料都放入一个大锅中,加入盐、胡椒粉和其他调味料,然后用中火煮沸,直到肉熟透,再加入面粉勾芡,最后撒上香草装饰即可。

4.代码示例:

// 准备配料

const ingredients = [

'1 lb beef',

'1 onion, chopped',

'2 cloves garlic, minced',

'2 carrots, diced',

'2 potatoes, peeled and cubed',

'1/2 cup tomato sauce',

'2 tabless paprika',

'salt and pepper to taste'

];

// 烹饪步骤

function makeGoulash() {

// 把配料放入锅中

let pot = new Pot();

for (let ingredient of ingredients) {

pot.add(ingredient);

}

// 加入调味料

pot.add('salt');

pot.add('pepper');

pot.add('paprika');

// 煮沸

pot.boil();

// 加入面粉勾芡

pot.thicken();

// 装盘

return pot.serve();

}

 
 
  • 3457人参与,13条评论