Skip to content

Instantly share code, notes, and snippets.

View vvani06's full-sized avatar

allegrogiken vvani06

View GitHub Profile
5000 24998
1 0
2 0
3 0
4 0
5 0
6 0
7 0
8 0
9 0
@vvani06
vvani06 / a.md
Last active May 10, 2023 12:37
test

hello

image image

@vvani06
vvani06 / bridged.rb
Created April 24, 2019 22:37
Bridge pattern with ruby
# 食器 の抽象クラス
class Dishware
def initialize(material)
@material = material
end
def 固形を入れる(); end
def 液体を入れる(); end
def 落とす()
@vvani06
vvani06 / bridged.rb
Created April 24, 2019 22:37
bridged.rb
# 食器 の抽象クラス
class Dishware
def initialize(material)
@material = material
end
def 固形を入れる(); end
def 液体を入れる(); end
def 落とす()