This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Class | |
def my_method | |
puts "Hehe, my name is #{name}" | |
end | |
end | |
class Test | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require './ri' | |
class PrinterJobs < Interface | |
def queue_job; end | |
def cancel_job; end | |
end | |
class InkjetJobs | |
def queue_job | |
puts "Queuing job" |
OlderNewer