0% found this document useful (0 votes)
6 views1 page

My Method

The document contains a simple Java program that defines a class named 'Main'. It includes a method 'myMethod' that prints 'I am AVI' to the console. The 'main' method calls 'myMethod' to execute this print statement.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

My Method

The document contains a simple Java program that defines a class named 'Main'. It includes a method 'myMethod' that prints 'I am AVI' to the console. The 'main' method calls 'myMethod' to execute this print statement.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

public class Main

{
static void myMethod()
{
[Link]("I am AVI");
}
public static void main(String args[])
{
myMethod();
}
}

You might also like