Skip to content

Instantly share code, notes, and snippets.

View bhodorog's full-sized avatar

Bogdan Hodorog bhodorog

View GitHub Profile
@bhodorog
bhodorog / keybase.md
Created February 19, 2019 03:49
Keybase.io proof

Keybase proof

I hereby claim:

  • I am bhodorog on github.
  • I am bogdunn (https://keybase.io/bogdunn) on keybase.
  • I have a public key ASAjgTIImtQirQc_-okeRtJ0g1jHqdJ8WoGoeiJLeAYPkAo

To claim this, I am signing this object:

import types
class Number:
def __init__(self, x: int) -> None:
self.x = x
self.minus = lambda y: self.x - y # we'll come back to this
def plus(self, y: int) -> int:
return self.x + y