Created
August 25, 2020 09:19
-
-
Save lukaseder/5a135f6bf91cbbc4eea73e1a76a18a91 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TwoMains { | |
public static void main(String[] args) { | |
System.out.println("main"); | |
mаin(args); | |
} | |
public static void mаin(String[] args) { | |
System.out.println("other mаin"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the name of the second method is not "main" actually。