Skip to content

Instantly share code, notes, and snippets.

@Rillwz
Last active August 24, 2021 21:31
Show Gist options
  • Select an option

  • Save Rillwz/49c4d75ce24a400826753a80ca8d24e6 to your computer and use it in GitHub Desktop.

Select an option

Save Rillwz/49c4d75ce24a400826753a80ca8d24e6 to your computer and use it in GitHub Desktop.
// Implementasi Abstract Class
// Abstract_Class_Pointer = Name of abstract_Class
abstract class Bicara{
void say();
}
class HelloWorld Extends Bicara {
@override
void say() {
print('something');
}
}
method say(); di class Bicara(); Akan tertimpa
dengan method say(); di class HelloWorld.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment