diff options
author | noahlz <nzucker@gmail.com> | 2013-07-07 18:50:18 -0400 |
---|---|---|
committer | noahlz <nzucker@gmail.com> | 2013-07-07 18:50:18 -0400 |
commit | d1f9b74644392bf6be6c4f8c96b990dfe435f51a (patch) | |
tree | a50eb998c246688ab8822f54e28d1e06b92d1d57 | |
parent | 48448599ffe81772bc8b01fffeb63af353913748 (diff) |
case statement needs end. Also added else
-rw-r--r-- | ruby.html.markdown | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ruby.html.markdown b/ruby.html.markdown index 8b223000..560c1750 100644 --- a/ruby.html.markdown +++ b/ruby.html.markdown @@ -214,7 +214,9 @@ when 'D' puts "Scraping through" when 'F' puts "You failed!" - +else + puts "Alternative grading system, eh?" +end # Functions |