Skip to content

Instantly share code, notes, and snippets.

View BramBo's full-sized avatar

Bram Wijnands BramBo

View GitHub Profile
require "rubygems"
require "sandbox"
s = Sandbox.new
s.eval %{
class Book
attr_accessor :author, :title
def initialize(a, t)
@author, @title = a, t
end