GitHub - raoofha/Ar: a total and turing complete [?] programming language
Ar : a total and turing complete language
inspired by Blindfolded Arithmetic and Z3
did you know that you don't need loop or recursion to program ?!
you only need these four functions
inc = lambda a: a if type(a)==str else a+1
sub = lambda a,b: a if type(a)==str else (b if type(b)==str else a-b)
mul = lambda a,b: a if type(a)==str else (b if type(b)==str else a*b)
div = lambda a,b: a if type(a)==str else (b if type(b)==str else (str(a) if b==0 else int(a/b)))
notice that we can use integers inst...
Read more at github.com