■無限に繰り返す (loop)

■書式

loop {
繰り返し内容
}

■説明

無限に繰り返すにはloopを使います。ループから抜けるにはbreakを使います。

■サンプル

#!/usr/bin/ruby
loop {
print "Sample\n"
}