I am not sure what this means, whenever before you write a code, people say this
public static void main(String[] args) {
What does that m
Public = This method is visible to all other classes.
Public
static = This method doesn't need an instance to be ran.
static
void = This method doesn't return anything.
void
main() = Main method (First method to run).
main()
String[] = Array of strings.
String[]
args = Array name.
args