Making a hello world app in a Form in Intellij
I'm trying to make a hello world form in Intellij. I've created the form, but the question now is what code to make in main() to make the form run and show up? PS: all the tutorials around seem to only focus on "how to do forms on intellij" not in "how to actually make it run, then". Thanks Steve McLeod Go to the class with the same name as the form. Press the keyboard shortcut for "Generate". It's Ctrl + N on Mac OS X, Alt + Ins on Windows. Alternatively, from the menu, select menu Code → Generate. Select "Form main()". Now the main method is written and inserted for you. It will look