blob: af18d4118f5a74639619db6a1bb4393973a2eb05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Type your code here, or load an example.
fun square(num: Int): Int = num * num
// Set `enabled` to `true` to enable profile-guided compilation for dex2oat.
// For the profile format, see
// https://developer.android.com/topic/performance/baselineprofiles/manually-create-measure#define-rules-manually
// (For advanced use only!)
/* ---------- begin profile (enabled=false) ----------
HSPLExampleKt;->square(I)I
LExampleKt;
---------- end profile ---------- */
|