class StrtoAscii
Public Class Methods
convert(alphabet = ('a'..'z'))
click to toggle source
# File lib/stringtoascii.rb, line 2 def self.convert(alphabet = ('a'..'z')) alphabet.each_byte do |c| print " ", c end puts " " end