21 lines
242 B
Java
21 lines
242 B
Java
|
package test;
|
||
|
|
||
|
|
||
|
|
||
|
public class Main
|
||
|
{
|
||
|
int i = 10;
|
||
|
|
||
|
public static void main(String[] args)
|
||
|
{
|
||
|
Main2 m = new Main2();
|
||
|
m.print();
|
||
|
|
||
|
/*
|
||
|
int i = 0;
|
||
|
i = Integer.parseInt(args[0]);
|
||
|
test_code x = new test_code();
|
||
|
x.main(i);
|
||
|
*/
|
||
|
}
|
||
|
}
|