Last active
September 2, 2016 06:56
-
-
Save akorchev/c954e899c75e3ca75d17e000cd5fa43b 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
interface Car { | |
} | |
interface Bus { | |
} | |
type Vehicle = Car | Bus; | |
function drive(vehicle: Vehicle): void { | |
switch (vehicle) { | |
case Car: | |
break; | |
case Buss: | |
break; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment