This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO estado (id, descripcion) VALUES(1, 'En curso'); | |
INSERT INTO estado (id, descripcion) VALUES(2, 'Finalizado'); | |
INSERT INTO departamento (id, numero) VALUES(1, 101); | |
INSERT INTO departamento (id, numero) VALUES(2, 102); | |
INSERT INTO departamento (id, numero) VALUES(3, 201); | |
INSERT INTO departamento (id, numero) VALUES(4, 202); | |
INSERT INTO departamento (id, numero) VALUES(5, 301); | |
INSERT INTO departamento (id, numero) VALUES(6, 302); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Facker</title> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pubic class Principal{ | |
public static void main(String[] args){ | |
System.out.println("Hola gist"); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HolaMundo{ | |
public static void main(String[] agrs){ | |
System.out.print("Hola mundo"); | |
} | |
} |
NewerOlder