Ruby
Ruby
__LINE__, __FILE__, alias, and, begin, break, case, class, def, defined?,
do,
Else, elsif, end, ensure, false, for, if, in, module, next, nil, not, or,
Redo, rescue, retry, return, self, super, then, true, undef, unless, until,
```
```ruby
If condición
# código
# código
Else
# código
End
Case variable
When valor
# código
Else
# código
End
While condición do
# código
End
# código
End
```
```ruby
Def nombre_metodo(parámetros)
Return valor
End
```
```ruby
Class NombreClase
# cuerpo de la clase
End
Module NombreMódulo
End
```
### Código y etiquetas