Make a class and send hello to your friend.
in java
Answers
Answered by
1
public class MyClass {
public static void main(String[] args) {
System.out.println("Hello, Friend!");
}
}
Make sure to name your file as MyClass.java
Similar questions