Files
compiler-explorer/examples/android-java/default.java
kevinjeon-g 99617a29b2 Move dex2oat profiles from inline to template (#6621)
This change moves the dex2oat profiles for Android Java and Kotlin from
the inline comments (included as part of the default code example) to
being included as a separate file. Templates have been added for this.
2024-06-24 21:33:31 -05:00

11 lines
229 B
Java

// Type your code here, or load an example.
//
// (For advanced use only) Click "Templates > Android Java IDE" for
// profile-guided compilation.
class Square {
static int square(int num) {
return num * num;
}
}