Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
予期しないトークン 'if' 付近の構文エラー
for x in 1..100 if x % 3 == 0 puts "Fizz" elsif (x % 5) == 0 puts "Buzz" else puts x end end