LiamTheBox@lemmy.world to Greentext@sh.itjust.works · 2 days agoAnon tries programming in Javalemmy.worldexternal-linkmessage-square227fedilinkarrow-up1806arrow-down131
arrow-up1775arrow-down1external-linkAnon tries programming in Javalemmy.worldLiamTheBox@lemmy.world to Greentext@sh.itjust.works · 2 days agomessage-square227fedilink
minus-squareمهما طال الليل@lemm.eelinkfedilinkarrow-up1·edit-23 hours agoIt is pretty late for me. Sorry. And thank you for your patience. Repeating it three times helped. I will be interesting to find out if the resulting binary is the same or not and what’s possible once it matured.
minus-squareJackbyDev@programming.devlinkfedilinkEnglisharrow-up2·3 hours agoYes, because it’s genuinely not a static method. It’s an instance method. Also the signature is different. It’s not some sort of mere syntactic trick that translates void main() to public static void main(String[] args).
It is pretty late for me. Sorry. And thank you for your patience. Repeating it three times helped.
I will be interesting to find out if the resulting binary is the same or not and what’s possible once it matured.
Yes, because it’s genuinely not a static method. It’s an instance method. Also the signature is different. It’s not some sort of mere syntactic trick that translates
void main()
topublic static void main(String[] args)
.