gplz.chef

The CHEF language was originally designed by David Morgan-Mar (see his homepage on http://www.physics.usyd.edu.au/~mar/esoteric/). To my knowledge, GPLZ has the first ever implementation of that fine and tasty language. The current version of GPLZ features an early beta implementation of the said language. Specifically, what is missing is

What follows is the original documentation for CHEF:

Design Principles

Chef is a programming language in which programs look like recipes:

Language Concepts

Ingredients

All recipes have ingredients! The ingredients hold individual data values. All ingredients are numerical, though they can be interpreted as Unicode for I/O purposes. Liquid ingredients will be output as Unicode characters, while dry or unspecified ingredients will be output as numbers.

Mixing Bowls and Baking Dishes

Chef has access to an unlimited supply of mixing bowls and baking dishes. These can contain ingredient values. The ingredients in a mixing bowl or baking dish are ordered, like a stack of pancakes. New ingredients are placed on top, and if values are removed they are removed from the top. Note that if the value of an ingredient changes, the value in the mixing bowl or baking dish does not. The values in the mixing bowls and baking dishes also retain their dry or liquid designations.

Multiple mixing bowls and baking dishes are referred to by an ordinal identifier - "the 2nd mixing bowl". If no identifier is used, the recipe only has one of the relevant utensil. Ordinal identifiers must be digits followed by "st", "nd", "rd" or "th", not words.

Syntax Elements

The following items appear in a Chef recipe. Some are optional. Items must appear in the order shown below, with a blank line (two newlines) between each item..

Recipe Title

The recipe title describes in a few words what the program does. For example: "Hello World Souffle", or "Fibonacci Numbers with Caramel Sauce". The recipe title is always the first line of a Chef recipe, and is followed by a full stop.

Comments

Comments are placed in a free-form paragraph after the recipe title. Comments are optional.

Ingredient List

The next item in a Chef recipe is the ingredient list. This lists the ingredients to be used by the program. The syntax is

Ingredients.
initial-value [[measure-type] measure] ingredient-name
[further ingredients]

Ingredients are listed one per line. The intial-value is a number. The optional measure can be any of the following:

The optional measure-type may be any of the following:

The ingredient-name may be anything reasonable, and may include space characters. The ingredient list is optional. If present, it declares ingredients with the given initial values and measures.

Cooking Time

Cooking time: time (hour[s] | minute[s]).

The cooking time statement is optional. The time is a number.

Oven Temperature

Pre-heat oven to temperature degrees Celcius [(gas mark mark)].

Some recipes require baking. If so, there will be an oven temperature statement. This is optional. The temperature and mark are numbers.

Method

Method.
method statements

The method contains the actual recipe instructions. These are written in sentences. Line breaks are ignored in the method of a recipe. Valid method instructions are:

Serves

The final statement in a Chef recipe is a statement of how many people it serves.

Serves number-of-diners.

This statement writes to STDOUT the contents of the first number-of-diners baking dishes. It begins with the 1st baking dish, removing values from the top one by one and printing them until the dish is empty, then progresses to the next dish, until all the dishes have been printed. The serves statement is optional, but is required if the recipe is to output anything!

Auxiliary Recipes

These are small recipes which are needed to produce specialised ingredients for the main recipe (such as sauces). They are listed after the main recipe. Auxiliary recipes are made by sous-chefs, so they have their own set of mixing bowls and baking dishes which the head Chef never sees, but take copies of all the mixing bowls and baking dishes currently in use by the calling chef when they are called upon. When the auxiliary recipe is finished, the ingredients in its first mixing bowl are placed in the same order into the calling chef's first mixing bowl.

For example, the main recipe calls for a sauce at some point. The sauce recipe is begun by the sous-chef with an exact copy of all the calling chef's mixing bowls and baking dishes. Changes to these bowls and dishes do not affect the calling chef's bowls and dishes. When the sous-chef is finished, he passes his first mixing bowl back to the calling chef, who empties it into his first mixing bowl.

An auxiliary recipe may have all the same items as a main recipe.

Example

Hello, .chef World

Hello World Souffle.

This recipe prints the immortal words "Hello world!", in a
basically brute force way. It also makes a lot of food for one person.

Ingredients.
72 g haricot beans
101 eggs
108 g lard
111 cups oil
32 zucchinis
119 ml water
114 g red salmon
100 g dijon mustard
33 potatoes

Method.
Put potatoes into the mixing bowl. Put dijon mustard into the mixing bowl. 
Put red salmon into the mixing bowl. Put oil into the mixing bowl. 
Put water into the mixing bowl. Put zucchinis into the mixing bowl. 
Put oil into the mixing bowl. Put lard into the mixing bowl. Put lard into
the mixing bowl. 
Put eggs into the mixing bowl. Put haricot beans into the mixing bowl. 
Liquify contents of the mixing bowl. Pour contents of the mixing bowl into
the baking dish.

Serves 1.

The following programm will print the first 20 fibonacci numbers

Fibonacci Al-Dente.

This will print the first 20 fibonacci numbers.

Ingredients.
1 egg
1 butter
20 carots
1 banana

Method.
Heat the carots. Put egg into the 1 mixing bowl. 
Put butter into the 2 mixing bowl. Put carots into the 3 mixing bowl. 
Liquify the 2 mixing bowl. Clean the 4 mixing bowl.
Put egg into the 4 mixing bowl. Add butter to the 4 mixing bowl.
Clean the 2 mixing bowl. Pour contents of the 1 mixing bowl into the 2
mixing bowl.
Clean the 1 mixing bowl. Pour contents of the 4 mixing bowl into the 1
mixing bowl.
Remove banana from 3 mixing bowl. Fold carots into 3 mixing bowl.
Fold butter into the 2 mixing bowl. Fold egg into the 1 mixing bowl. 
Repeat until the carots stink.