Java -Klasse
//This is an example of a class:
public class Test{
public static void main(String[] args) {
System.out.println("Test");
}
}
//For more info a class is kinda like a blueprint for creating objects.
//Almost all of the code(Except imports, etc) are put in the class.
Maahi Batra