Created
July 29, 2020 21:43
-
-
Save sudomaxime/2b5cbcc43b280328bcfd11d4956fc90d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Dog { | |
isDog () { | |
return true; | |
} | |
} | |
// This is fine | |
var dog: Dog; | |
// This is wrong, Syntax error 'Dog' has already been declared. | |
var Dog; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment