rumlang / rum

Functional language, easily extensible and possible (Lua features with LISP dialect and functional) to be embarked on software Go!
https://www.rumlang.org/
MIT License
157 stars 13 forks source link

Compare strings #123

Closed crgimenes closed 6 years ago

crgimenes commented 6 years ago

Add comparison of strings with == operator

Example:

(let a "good")
(if (== a "good") 
    (print "good") 
    (if (== a "bad") 
       (print "bad")
       (print "ugly")))