Fill in the class
Great job so far! You are on your way to becoming a pro in no time. Classes are a way Java organizes code, similar to using folders.
Cet exercice fait partie du cours
Introduction to Java
Instructions
- Create a
class
calledHelloClass
.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
// Start your class here
____ ____ {
public static void main(String[] args) {
System.out.println("I can do classes in Java now!");
}
}