package javaBasic; public class CallFunction { // TODO Auto-generated method stub //Que.6:Write a function to print your name and call the function from main method static void myMethod() { System.out.println("I just got executed!"); } public static void main(String[] args) { myMethod(); } }