Skip to content

Instantly share code, notes, and snippets.

View baweaver's full-sized avatar
📝
Documenting things

Brandon Weaver baweaver

📝
Documenting things
View GitHub Profile
@madlep
madlep / applicative.rb
Last active January 11, 2021 01:12
Ruby validation applicative example
class Either
def self.pure(value)
Right.new(value)
end
class Left
def initialize(left)
@left = left
end