Table of Contents
1 EJEMPLO 1
public class HolaMundo {
public static void main(String[] args) {
System.out.println("Hola Mundo");
}
}
2 EJEMPLO 2
-- Declaración de un procedimiento
CREATE OR REPLACE PROCEDURE hola_mundo IS
BEGIN
DBMS_OUTPUT.PUT_LINE('Hola Mundo desde un procedimiento');
END;
/
-- Ejecutar el procedimiento
BEGIN
hola_mundo();
END;
/
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.