Skip to content

Instantly share code, notes, and snippets.

View yevhene's full-sized avatar
🍺

Yevhen Shemet yevhene

🍺
View GitHub Profile
class Edge
attr_accessor :src, :dest, :length
def initialize(src, dest, length = 1)
@src = src
@dest = dest
@length = length
end
end