Newer
Older
Ruby / renshu_ramen2.rb
@SAITO Michiru SAITO Michiru on 1 Oct 2022 221 bytes 2022-10-01 13:59:34
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
print "お湯を入れました\n"
count = 1

while true  
  count = count + 1
  sleep(1)
  if count == 5
    print("いただきまーす!")
    break
    end
end