Gradle hello word

In IDEA, the use of project management Gradle

Our new projects:

 

 

 

 

 

 

So our first gradle management of documents is complete. Here Girl and main categories:

public class Girl {
    public String greeting(){
        return "hello";
    }
}

 

public class Main {
    public static void main(String[] args){
        Girl g = new Girl();
        System.out.println(g.greeting());
    }
}

 

Guess you like

Origin www.cnblogs.com/superxuezhazha/p/12121920.html