Skip to content

Instantly share code, notes, and snippets.

View el-hoshino's full-sized avatar
🏠
Working from home

Elvis Shi el-hoshino

🏠
Working from home
View GitHub Profile
@el-hoshino
el-hoshino / CodePiece.swift
Created March 27, 2018 09:08 — forked from takasek/CodePiece.swift
ポプテピピックが完成したら竹書房を破壊するSwiftコード #CodePiece
enum PopTeamEpic: String {
case po = "ポ"
case p = "プ"
case teame = "テピ"
case pic = "ピック"
}
struct 蒼井翔太: Sequence, IteratorProtocol {
mutating func next() -> PopTeamEpic? {
switch arc4random_uniform(4) {
case 0: return .po