0
How do u use the system.out.println("Hello world")
5 ответов
+ 2
keep s capital as S
class Test
{
public static void main(String arts[])
{
System.out.println("Hello World");
}
}
and its small L I'm println not capital i
its the most confusing for beginners
+ 2
sorry its String arts not String arts
+ 2
args
+ 1
public class Program
{
public static void main(String[] args) {
System.out.println("Hello world");
}
}
0
thanks it is working now