Hey!
Firstly, you have created a new class above imports which cannot be done. If you want both classes in the same file, you will have to move the top one down below imports.
Secondly, both classes are named 'main', which is also not allowed. Choose a different name!
Thirdly, by convention, classes should start with a capital letter, e.g 'Main' instead of 'main'. It's just convention so it doesn't make any difference in terms of execution, but conventions are good to stick to! (I realise I stupidly named it with a lowercase in the tutorial, i've been meaning to rewrite this tutorial for a while now!)
In short, to fix your problem, just remove the top 'public class main { }'.
GL!
Apa