update readme

This commit is contained in:
vonhyou 2021-04-15 01:40:53 +08:00
parent 1461b17e78
commit 19b8871a06
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ module Lisp
def self.make_global
@global_env ||= begin
ops = %i[== != < <= > >= + - * /]
ops = %i[== != < <= > >= + - * / % & | ^ ]
ops.inject({}) do |scope, op|
scope.merge op => ->(*args) { args.inject(&op) }
end