Skip to content

Instantly share code, notes, and snippets.

@giigame
giigame / file0.swift
Last active September 4, 2016 13:48
特殊記号を使って度数からラジアンへの変換を簡潔にする (Custom Operators) ref: http://qiita.com/giigame/items/848d84f176b6cb6cc2a6
postfix operator ° // ° はMacキーボードで Option+Shift+8
@giigame
giigame / file0.swift
Last active September 4, 2016 13:51
var a = a や if let b = b {} のような紛らわしい構文も使えるswiftのシャドウイング ref: http://qiita.com/giigame/items/bdd7ab74ec8321b73b97
func foo(i: Int) {
var i = i
}