Skip to content

Instantly share code, notes, and snippets.

import sys
import re
from functools import reduce
class Symbol(str):
pass
def Sym(s):
return Symbol(s)
class List(list): pass

Keybase proof

I hereby claim:

  • I am carlcortright on github.
  • I am carlcortright (https://keybase.io/carlcortright) on keybase.
  • I have a public key ASAq2CcvRROSYF2a2_uWpEOV2_hlAqi7s7TPAdMhPTjacwo

To claim this, I am signing this object:

# == defined for different arguments
function ==(a::Int, b::String)
isequal(string(a), b)
end
function ==(a::String, b::Int)
isequal(Int(a), b)
end