Skip to content

Instantly share code, notes, and snippets.

@jmesnil
Last active March 13, 2025 09:54
Show Gist options
  • Save jmesnil/256b3fe1c07cc3ba1942034057f76b47 to your computer and use it in GitHub Desktop.
Save jmesnil/256b3fe1c07cc3ba1942034057f76b47 to your computer and use it in GitHub Desktop.
Simple Java application with JBang
///usr/bin/env jbang "$0" "$@" ; exit $?
//DEPS com.github.lalyos:jfiglet:0.0.8
import com.github.lalyos.jfiglet.FigletFont;
class myapp {
public static void main(String[] args) throws Exception {
String name = args.length==0 ? "World" : args[0];
String hello = String.format("Hello, %s!", name);
System.out.println(FigletFont.convertOneLine(hello));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment