Created
August 17, 2020 18:56
-
-
Save adibpwd/24231b69f3c30c39ddf14f4985b01599 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
void main() { | |
var cbr = new Cbr125(); | |
print(cbr.merkBan()); | |
} | |
abstract class Motor { | |
merkBan() {} | |
merkOli() {} | |
} | |
class Cbr125 implements Motor { | |
@override | |
merkBan() { | |
return 'roda ban'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment