Skip to content

Instantly share code, notes, and snippets.

@civera2
Last active May 19, 2021 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save civera2/388b7b03d5db4b181a168af3277cd2e4 to your computer and use it in GitHub Desktop.
Save civera2/388b7b03d5db4b181a168af3277cd2e4 to your computer and use it in GitHub Desktop.
group: Parcial2
Persona= {nom:string, fechanac:date
'Keanu Reeves', 1964-03-23
'Carrie-Anne Moss', 1967-03-29
'Hugo Weaving', 1960-03-30
'Emil Eifrem', 1978-10-20
'Al Pacino', 1940-10-20
'Charlize Theron', 1975-10-20
'Lilly Wachowski', 1967-05-27
'Taylor Hackford', 1944-08-13
'Paul Blythe', 2009-12-13
'Patrick Swayze',1956-09-19
}
Pelicula = {titulo:string, estreno:date,lema:string
'The Matrix', 1990-09-13,'Welcome to the Real World'
'Point Break',1990-01-20,'Punto Límite'
'The Matrix Revolutions', 2003-04-19,'Everything that has a beginning has an end'
'The Devils Advocate', 1997-08-30,'Evil has its winning ways'
}
Dirige = {nom:string, titulo:string
'Carrie-Anne Moss','The Matrix'
'Hugo Weaving','The Matrix'
'Keanu Reeves','The Matrix Revolutions'
'Carrie-Anne Moss','The Matrix Revolutions'
'Taylor Hackford','The Devils Advocate'
}
Actua= {nom:string, titulo:string
'Keanu Reeves','The Matrix'
'Hugo Weaving','The Matrix'
'Emil Eifrem','The Matrix'
'Emil Eifrem','The Matrix Revolutions'
'Emil Eifrem','The Devils Advocate'
'Emil Eifrem','Point Break'
'Keanu Reeves','The Matrix Revolutions'
'Lilly Wachowski','The Matrix Revolutions'
'Keanu Reeves','The Devils Advocate'
'Al Pacino','The Devils Advocate'
'Keanu Reeves','Point Break'
'Patrick Swayze','Point Break'
}
Sigue= {seguido:string,seguidor:string
'Keanu Reeves','Hugo Weaving'
'Keanu Reeves','Al Pacino'
'Emil Eifrem','Lilly Wachowski'
'Keanu Reeves','Paul Blythe'
'Al Pacino','Keanu Reeves'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment