java-tutorials/jbang/hello.java
2021-11-22 11:11:13 +01:00

12 lines
227 B
Java
Executable File

///usr/bin/env jbang "$0" "$@" ; exit $?
// //DEPS <dependency1> <dependency2>
import static java.lang.System.*;
public class hello {
public static void main(String... args) {
out.println("Hello World");
}
}