fix(challenge): Add semicolons to "OOP: Inherit from a Supertype"

This commit is contained in:
Samuel Plumppu
2017-02-04 02:54:28 +01:00
parent 41e00fbf13
commit aabdbfaab9

View File

@ -660,8 +660,8 @@
"", "",
"// Add your code below this line", "// Add your code below this line",
"", "",
"let duck", "let duck; // Change this line",
"let beagle", "let beagle; // Change this line",
"", "",
"duck.eat(); // Should print \"nom nom nom\"", "duck.eat(); // Should print \"nom nom nom\"",
"beagle.eat(); // Should print \"nom nom nom\" " "beagle.eat(); // Should print \"nom nom nom\" "