Public static void main(String[] args)

>public static void main(String[] args)

Attached: 1507295761446.png (485x443, 26K)

In Rust it's just
fn main(){}

>rust

Attached: 1518760563996.jpg (988x1059, 160K)

in lua it's just

>waaa rust! :'(

Attached: 1531435792080.jpg (917x599, 57K)

I still don't understand how it's not String args[]

what are you implying?

because you define a string-array with the name “args“

in python it's just

Yea but......
String args[]
^^^ array of type String, called args.

Are you a fucking brainlet?? Don't you know how java names its shit? That reads an array of strings named arg. args[] means the blank element of args which doesn't make any sense. Also you can't define the type of a single element of an array.

>array of type String
Which is a type in itself. Think of it as an std::vector args

Attached: pqafkb6d9ba01.jpg (645x729, 49K)

I don't get it at all. So then, why does C/C++ have such a retarded way of symbolising arrays?

in BASIC it's just

C has done a lot of mistakes.

Attached: 1533189188905.png (1294x3510, 866K)

Imagine how buttblasted someone had to have been by the soiboi meme that they made that. I bet they still can't sit down.

Attached: Girls.png (449x401, 490K)

saved

C was a mistake

>December 22, 2009
Lost cause

kek

#include

int main (){

int i;

for (i = 0; i < 101; i++){
if ((i % 3 == 0) && (i % 5 == 0) && (i !=0)){
printf ("Fizz Buzz");
}
else if ((i % 3 == 0) && (i !=0)){
printf ("Fizz");
}
else if ((i % 5 == 0) && (i !=0)){
printf ("Buzz");
}
else {
printf ("%d\n", i);
}
}

system ("pause");
return 0;

}