8 lines
89 B
Text
8 lines
89 B
Text
|
class DevonshireCream {
|
||
|
serveOn() {
|
||
|
return "Scones";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
print DevonshireCream;
|