Last active
September 22, 2017 19:07
-
-
Save gregori/94d2f32d14aa850642f7c64885999d8e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| group:Pizzaria | |
| Pessoa = { | |
| nome:string, idade:number, sexo:string | |
| 'Amy' , 16 , 'feminino' | |
| 'Ben' , 21 , 'masculino' | |
| 'Cal' , 33 , 'masculino' | |
| 'Dan' , 13 , 'masculino' | |
| 'Eli' , 45 , 'masculino' | |
| 'Fay' , 21 , 'feminino' | |
| 'Gus' , 24 , 'masculino' | |
| 'Hil' , 30 , 'feminino' | |
| 'Ian' , 18 , 'masculino' | |
| } | |
| Frequenta = { | |
| nome:string, pizzaria:string | |
| 'Amy' , 'Pizza Hut' | |
| 'Ben' , 'Pizza Hut' | |
| 'Ben' , 'Chicago Pizza' | |
| 'Cal' , 'Straw Hat' | |
| 'Cal' , 'New York Pizza' | |
| 'Dan' , 'Straw Hat' | |
| 'Dan' , 'New York Pizza' | |
| 'Eli' , 'Straw Hat' | |
| 'Eli' , 'Chicago Pizza' | |
| 'Fay' , 'Dominos' | |
| 'Fay' , 'Little Caesars' | |
| 'Gus' , 'Chicago Pizza' | |
| 'Gus' , 'Pizza Hut' | |
| 'Hil' , 'Dominos' | |
| 'Hil' , 'Straw Hat' | |
| 'Hil' , 'Pizza Hut' | |
| 'Ian' , 'New York Pizza' | |
| 'Ian' , 'Straw Hat' | |
| 'Ian' , 'Dominos' | |
| } | |
| Come = { | |
| nome:string, pizza:string | |
| 'Amy' , 'pepperoni' | |
| 'Amy' , 'champignon' | |
| 'Ben' , 'pepperoni' | |
| 'Ben' , 'muzzarela' | |
| 'Cal' , 'suprema' | |
| 'Dan' , 'pepperoni' | |
| 'Dan' , 'muzzarela' | |
| 'Dan' , 'calabresa' | |
| 'Dan' , 'suprema' | |
| 'Dan' , 'champignon' | |
| 'Eli' , 'suprema' | |
| 'Eli' , 'muzzarela' | |
| 'Fay' , 'champignon' | |
| 'Gus' , 'champignon' | |
| 'Gus' , 'suprema' | |
| 'Gus' , 'muzzarela' | |
| 'Hil' , 'suprema' | |
| 'Hil' , 'muzzarela' | |
| 'Ian' , 'suprema' | |
| 'Ian' , 'pepperoni' | |
| } | |
| Serve = { | |
| pizzaria:string , pizza:string, preco:number | |
| 'Pizza Hut' , 'pepperoni' , 12 | |
| 'Pizza Hut' , 'calabresa' , 12 | |
| 'Pizza Hut' , 'muzzarela' , 9 | |
| 'Pizza Hut' , 'suprema' , 12 | |
| 'Little Caesars', 'pepperoni' , 9.75 | |
| 'Little Caesars', 'calabresa' , 9.5 | |
| 'Little Caesars', 'muzzarela' , 7 | |
| 'Little Caesars', 'champignon' , 9.25 | |
| 'Dominos' , 'muzzarela' , 9.75 | |
| 'Dominos' , 'champignon' , 11 | |
| 'Straw Hat' , 'pepperoni' , 8 | |
| 'Straw Hat' , 'muzzarela' , 9.25 | |
| 'Straw Hat' , 'calabresa' , 9.75 | |
| 'New York Pizza', 'pepperoni' , 8 | |
| 'New York Pizza', 'muzzarela' , 7 | |
| 'New York Pizza', 'suprema' , 8.5 | |
| 'Chicago Pizza' , 'muzzarela' , 7.75 | |
| 'Chicago Pizza' , 'suprema' , 8.5 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment