This website requires JavaScript.
Explore
Help
Sign In
smits
/
ruby-uebungen
Watch
1
Star
3
Fork
You've already forked ruby-uebungen
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
fe2c1c6eb6
ruby-uebungen
/
Assignment_002
/
solution
History
Thomas Smits
25d5ac7ffd
Initial commit
2023-05-23 09:19:31 +02:00
..
readme.md
Initial commit
2023-05-23 09:19:31 +02:00
readme.md
Lösung: Case
```ruby note = 3 text = case note when 1 then 'sehr gut' when 2 then 'gut' when 3 then 'befriedigend' when 4 then 'ausreichend' else 'durchgefallen' end ```