ltd-graph-builder/src/test/res/ejemplos/Test_1.java

14 lines
163 B
Java
Raw Normal View History

2019-03-26 20:11:14 +01:00
package ejemplos;
public class Test_1 {
public static void main(String[] args)
{
System.out.println("HOLA mundo");
int x=1;
x=2;
x=3;
x=4;
}
}