Skip to content

Instantly share code, notes, and snippets.

@jballanc
Created April 25, 2014 08:58
Show Gist options
  • Save jballanc/11282767 to your computer and use it in GitHub Desktop.
Save jballanc/11282767 to your computer and use it in GitHub Desktop.
class Foo
=> MyAttribute
def bar
puts "Attributed method"
end
=> typecheck("Fixnum -> String")
def baz(num)
"Your number is #{num}"
end
end
@awwaiid
Copy link

awwaiid commented Apr 30, 2014

Idea:

class Foo
  type baz: Fixnum >> String
  def baz(num)
    "Your number is #{num}"
  end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment