class Foo {
static {
System.out.println("static");
}
static void bar() {
System.out.println("bar");
}
}
class Main {
public static void main(String[] args) {
System.out.println("main");
Foo.bar();
}
}
To embed this program on your website, copy the following code and paste it into your website's HTML: