Skip to content

Instantly share code, notes, and snippets.

@dleonard00
Created June 7, 2017 18:54
Show Gist options
  • Save dleonard00/a35b96e9afa5788e174aaa74a36dfa11 to your computer and use it in GitHub Desktop.
Save dleonard00/a35b96e9afa5788e174aaa74a36dfa11 to your computer and use it in GitHub Desktop.
Fat finger bool literal aliases
//
// 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