Created
June 7, 2017 18:54
-
-
Save dleonard00/a35b96e9afa5788e174aaa74a36dfa11 to your computer and use it in GitHub Desktop.
Fat finger bool literal aliases
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Bull.swift | |
// | |
// Created by doug on 6/7/17. | |
// | |
import Foundation | |
let ture: BooleanLiteralType = true | |
let rtue: BooleanLiteralType = true | |
let 🐴: BooleanLiteralType = true | |
let flase: BooleanLiteralType = false | |
let fasle: BooleanLiteralType = false | |
let 🦄: BooleanLiteralType = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment