summaryrefslogtreecommitdiff
path: root/src/test/resources/example/src/Foo.java
blob: a5ba9e2a2a398517a808e77d288d6587a03b3a79 (plain) (blame)
1
2
3
4
5
6
7
package test;
public class Foo{
    static int value = 31337;
    public static void main(String[] args){
        System.out.println(value);
    }
}