Last active
January 3, 2016 07:09
-
-
Save joseluistorres/8427378 to your computer and use it in GitHub Desktop.
Herencia - Parte 2
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
| class Taco | |
| #… | |
| def verdura | |
| if @sabor==‘pastor’ | |
| { cebolla: cebolla, | |
| :cilantro cilantro} | |
| else | |
| {cebolla: cebolla, | |
| :cilantro cilantro, | |
| :cebolla_frita cebolla_frita} | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment