I don’t know (but wanna learn) programming, but, for example, can’t you inspect the code of an app if it’s installed?

(yeah this is kind of a stupid question.)

EDIT: Thanks for the clarification, guys!

  • Xylight (Photon dev)@lemmy.xylight.dev
    link
    fedilink
    arrow-up
    4
    ·
    11 months ago

    Most compiled apps (exes) can technically be read, but only if you use a disassembler to convert the machine code into raw assembly.

    However, this assembly has no:

    • Comments
    • Documentation
    • Names
    • Organization
    • etc…

    Only if you are extremely skilled at reading assembly can you read a compiled program.