Skip to content

Instantly share code, notes, and snippets.

@adacola
adacola / ninja.fsx
Created March 13, 2014 12:23
https://gist.github.com/pocketberserker/8972681 をリファクタリング?してみた
type Emotion =
| Love
| Hate
type User = string
type Conversation = {
Affinity: Map<User * User, Emotion>
Message: Map<User * Emotion, string>
}