mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Co-authored-by: Raúl Pardo <raul.pardo@protonmail.com> Co-authored-by: SimonJorgensenMancofi <simon.jorgensen@mancofi.dk> Co-authored-by: Bjørnar Haugstad Jåtten <bjornjaat@hotmail.com>
15 lines
289 B
Java
15 lines
289 B
Java
/*
|
|
* This Java source file was generated by the Gradle 'init' task.
|
|
*/
|
|
package examples;
|
|
|
|
public class App {
|
|
public String getGreeting() {
|
|
return "Hello World!";
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println(new App().getGreeting());
|
|
}
|
|
}
|