Ruby - Jednoduché šifrovanie
Ukážkový program Jednoduché šifrovanie textu vrátane zdrojových kódov v jazyku Ruby.
puts "Zadejte text k sifrovani" text = gets.upcase.strip puts "Zadejte heslo k sifrovani" passwd = gets.upcase.strip # zasifrovani textu text.length.times do |i| text[i] += passwd[i % passwd.length ] - (?A - 1) text[i] -= (?Z - ?A + 1) if (text[i] > ?Z) end puts text