b9f9aa4499
[BENCHMARK] * NEW: Add java benchmarks. Note that 'string' and 'string2' benchmarks are too slow when run with the Java interpreter. So they are just run with Java and JIT compilation enabled.
8 lines
144 B
Text
Executable file
8 lines
144 B
Text
Executable file
#!/usr/bin/java --source 11
|
|
class test {
|
|
public static void main(String[] args)
|
|
{
|
|
System.out.println("Hello, World!");
|
|
}
|
|
}
|
|
|