1Class main {
2 Public static void main(String[] args) {
3 //Write your code here
4 }
5}
1public class Test {
2
3static void main(String[] args){
4
5 System.out.println("Hello World");
6
7}
8}
9
1class TestClass
2{
3 static void Main(string[] args)
4 {
5 // Display the number of command line arguments.
6 Console.WriteLine(args.Length);
7 }
8}
9