Merge pull request #13126 from Greenheart/fix/oop-supertype-semicolons

fix(challenge): Add semicolons to "OOP: Inherit from a Supertype"
This commit is contained in:
Dylan
2017-02-03 22:22:40 -06:00
committed by GitHub

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\" "