Answers for "how to declare main in java"

0

how to write a method inside main in java

public class Main {
  static void myMethod() {
    System.out.println("I just got executed!");
  }

  public static void main(String[] args) {
    myMethod();
  }
}

// Outputs "I just got executed!"
Posted by: Guest on May-31-2021

Code answers related to "how to declare main in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language