Skip to content

Instantly share code, notes, and snippets.

View Nyae44's full-sized avatar
🎯
Focusing

Daley Nyae Nyae44

🎯
Focusing
View GitHub Profile
@Nyae44
Nyae44 / main.dart
Created October 29, 2022 00:19
quintessential-toast-2689
void main(){
Car myCar = Car(drive : slowDrive);
myCar.drive();
myCar.drive = fastDrive;
myCar.drive();
}
class Car {
Car({ required this.drive});
Function drive;
}