mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
8 lines
No EOL
180 B
Text
8 lines
No EOL
180 B
Text
enum MealType { "rice", "noodles", "other" };
|
|
|
|
interface Meal {
|
|
attribute MealType type;
|
|
attribute float size; // in grams
|
|
|
|
void initialize(MealType type, float size);
|
|
}; |