#!/usr/local/bin/ruby class Graph attr :vertices attr :edges def initialize(@edges = [], @vertices = []) end end p Graph.new