I started coding java a few days ago. İ made a few succesfull programs but im stuck on this one. Where ever i write the \"Public static void main(String[] args)\" code i get
Your syntax doesn't make any sense. You have a method called Board() seemingly inside your main() method, which isn't possible.
It further doesn't make sense, because Board() is a constructor (notice it starts with an upper-case letter and has no return type), but I don't see a Board class here.
You need to figure out exactly what you want to do: are you supposed to create a Board class? If so, that belongs in another file. Do you already have a Board class that you're trying to construct from the main() method? If so, then you call the constructor using the new keyword.
Recommended reading: The Java Tutorials: Providing Constructors for Your Classes