gambas-source-code/benchmark/test.jvs
Benoît Minisini b9f9aa4499 Add java benchmarks.
[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.
2023-01-10 17:10:31 +01:00

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!");
}
}