16 lines
343 B
Java
16 lines
343 B
Java
|
package com.baeldung;
|
||
|
|
||
|
import com.baeldung.Greetings;
|
||
|
import org.apache.commons.lang3.StringUtils;
|
||
|
|
||
|
public class BazelApp {
|
||
|
|
||
|
public static void main(String ... args) {
|
||
|
Greetings greetings = new Greetings();
|
||
|
|
||
|
System.out.println(greetings.greet("Bazel"));
|
||
|
|
||
|
System.out.println(StringUtils.lowerCase("Bazel"));
|
||
|
}
|
||
|
}
|