myFirstProgram
class hello{
public static void main(String []args) // compulsory Syntax
{
System.out.println("Hello, We are Devloper.");
}
}
Output:
Hello, We are Devloper.
class hello{
public static void main(String []args) // compulsory Syntax
{
System.out.println("Hello, We are Devloper.");
}
}
Output:
Hello, We are Devloper.
Post a Comment