Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created February 17, 2026 01:14
Show Gist options
  • Select an option

  • Save skydoves/28797f11784cb344907e88a7767d4962 to your computer and use it in GitHub Desktop.

Select an option

Save skydoves/28797f11784cb344907e88a7767d4962 to your computer and use it in GitHub Desktop.
Decompiled Value Class - Java Bytecode
public final class IdKt {
// The function takes the PRIMITIVE type directly
public static final void processId(String userId) {
String var1 = "Processing user with ID: " + userId;
System.out.println(var1);
}
public static final void main() {
// No UserId object allocated
String myId = UserId.constructor_impl("user-123");
processId(myId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment