mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 14:04:04 -05:00
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.
11 lines
229 B
Java
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;
|
|
}
|
|
}
|