Horje
can i call another function from main hava Code Example
can i call another function from main hava
package learningjava;

public class helloworld {
    public static void main(String[] args) {
        new helloworld().go();
        // OR
        helloworld.get();
    }

    public void go(){
        System.out.println("Hello World");
    }
    public static void get(){
        System.out.println("Hello World, Again");
    }
}




Java

Related
java get first day of the week Code Example java get first day of the week Code Example
reverse a string in java Code Example reverse a string in java Code Example
esponente in java Code Example esponente in java Code Example
first and last element of array java Code Example first and last element of array java Code Example
java stringbuilder set value Code Example java stringbuilder set value Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7