Skip to content

Instantly share code, notes, and snippets.

View Hysteria's full-sized avatar

Zhou Hangqing Hysteria

View GitHub Profile
@Hysteria
Hysteria / Dice.swift
Created December 22, 2014 08:23
Dice example in swift
protocol RandomNumberGenerator {
func random() -> Double
}
class LinearCongruentialGenerator : RandomNumberGenerator {
var lastRandom = 42.0
let m = 139969.0
let a = 3877.0
let c = 29573.0
func random() -> Double {