In the java book im reading (Java: a beginner's guide by Herbert Schildt) it usually displays the main as such:
public static void main(String args[]) {
but often in this website I see code written as this:
public static void main(String[] args) {
Is there a functional difference between the two? Or is it really just preference?