|
HelloWorld
Quick start
hello: "Hello World" import java.util.Map;
import com.eva.properties.MapProperties;
public class HelloWorld {
public static void main(String[] args) {
Map properties = new MapProperties("classpath://hello.eva");
System.out.println(properties.get("hello"));
}
} |
► Sign in to add a comment