Full Program
class Journey def arrive "Hello World" end def purpose while living realize! end transcend end def transcend exit end def perfecting "keep trying " * 5 end def realize! "satisfied all requirements" end end class Bird < Journey attr_accessor :age attr_reader :fate, :species def initialize(species) @species = species @age = 0 @fate = rand(0..10) end end bird = Bird.new("great blue heron") p bird.inspect bird.birth bird.purpose bird.transcend
Journey.new tells a story of birth, life and death.
Programs are removed from their traditional context, a software program, and inserted into mixed media artistic representations, such as a fusion of computer graphic output and oil on canvas.
This record is a work in progress. If you have additional information, or have spotted an error, please send feedback.