Skip to content

Instantly share code, notes, and snippets.

View wkwkes's full-sized avatar
💭
🐪

Hiroki Oshikawa wkwkes

💭
🐪
View GitHub Profile

Keybase proof

I hereby claim:

  • I am wkwkes on github.
  • I am wkwkes (https://keybase.io/wkwkes) on keybase.
  • I have a public key whose fingerprint is 4759 58CE 6692 5374 6D8B 3B2C 7F8C F69D E349 638C

To claim this, I am signing this object:

@wkwkes
wkwkes / basic_fc.ml
Last active December 19, 2017 07:00
ML Advend Clendar 2017
(** basic definition **)
module type ExpSYM = sig
type repr
val lit : int -> repr
val neg : repr -> repr
val add : repr -> repr -> repr
end