Last active
March 13, 2022 20:45
-
-
Save ypacheco/08411ee32ca1841a8bde387663a28191 to your computer and use it in GitHub Desktop.
WPO4exercises
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
-- this is an example | |
group: Exercise4 | |
Employee = { | |
person_name, street,city | |
'Daisy', 'Dictum Av','Chicago' | |
'Angela', 'Arcu St', 'Philadelphia' | |
'Lucy', 'Viverra Avenue', 'Detroit' | |
'Valentina', 'Tortor Street', 'Dallas' | |
'Rose', 'Proin Road', 'Denver' | |
'Alexis', 'Tortor Street', 'Dallas' | |
'Hector', 'Integer Rd', 'San Francisco' | |
'Julian', 'Viverra Avenue', 'Detroit' | |
'Adrian', 'Dictum Av', 'Chicago' | |
'Scott', 'Ut Ave', 'Denver' | |
} | |
Company = { | |
company_name, city | |
'Walmart', 'Philadelphia' | |
'First Bank Corporation', 'Dallas' | |
'Exxon', 'Detroit' | |
'Apple', 'Denver' | |
'Small Bank Corporation', 'Chicago' | |
} | |
Works = { | |
person_name, company_name, salary | |
'Daisy', 'Walmart', 30 | |
'Angela', 'Exxon', 46 | |
'Scott', 'Apple', 50 | |
'Adrian', 'Small Bank Corporation', 24 | |
'Julian', 'First Bank Corporation', 37 | |
'Hector', 'Walmart', 52 | |
'Alexis', 'Apple', 46 | |
'Rose', 'Small Bank Corporation', 46 | |
'Valentina', 'First Bank Corporation', 28 | |
'Lucy', 'Exxon', 34 | |
} | |
Manages = { | |
person_name, manager_name | |
'Daisy', 'Adrian' | |
'Rose', 'Angela' | |
'Hector', 'Lucy' | |
'Scott', 'Rose' | |
'Lucy', 'Julian' | |
'Alexis', 'Valentina' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment