Skip to content

Instantly share code, notes, and snippets.

@semmons99
Created July 20, 2015 17:34
Show Gist options
  • Save semmons99/0935968665a2cc5206c8 to your computer and use it in GitHub Desktop.
Save semmons99/0935968665a2cc5206c8 to your computer and use it in GitHub Desktop.
require "bundler/inline"
gemfile do
source "https://rubygems.org"
gem "contracts"
end
include Contracts
Contract Num => 0
def fib(n)
0
end
Contract Num, Num => 1
def fib(x, y)
1
end
puts fib(1)
puts fib(2,3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment