mirror of
https://github.com/Dichgrem/Java.git
synced 2025-12-16 20:42:00 -05:00
9 lines
154 B
Java
9 lines
154 B
Java
package com.study.demo3;
|
|
|
|
public class Bicycle extends Vehicle {
|
|
@Override
|
|
public void start() {
|
|
System.out.println("The bike is started");
|
|
}
|
|
}
|