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

13 lines
165 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) {
2019-03-26 20:11:14 +01:00
System.out.println("HOLA mundo");
int x = 1;
x = 2;
x = 3;
x = 4;
2019-03-26 20:11:14 +01:00
}
}