fez-lisp 1.2.33 → 1.2.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -243,11 +243,8 @@ console.log(fez(tree(`(+ (|> 1 (+ 2) (* 3) (- 1)) (- (* (+ 1 2) 3) 1))`)))
243
243
 
244
244
  ```lisp
245
245
  ; Build-in all keywords
246
- (/) (+) (*) (-) (=) (<) (>) (>=) (<=) (&) (~) (|) (^) (<<) (>>) (>>>)
247
- (mod) (let) (if) (not) (and) (or) (cond) (atom?) (lambda?)
248
- (length) (do) (array) (set!) (get) (lambda) (apply) (void)
249
- ; Console functions
250
- (log!) (log-string!) (log-char!) (clear!)
251
- ; Syntactic suggar keywords
252
- (|>) (list) (unless) (array?) '() `() (!=) (<>)
246
+ (/ ...) (+ ...) (* ...) (- ...) (= ...) (< ...) (> ...) (>= ...) (<= ...) (& ...) (~ ...) (| ...) (^ ...) (<< ...) (>> ...) (>>> ...)
247
+ (mod ...) (let ...) (if ...) (not ...) (and ...) (or ...) (cond ...) (atom? ...) (lambda? ...)
248
+ (length ...) (do ...) (array ...) (set! ...) (get ...) (lambda ...) (apply ...)
249
+ (throw ...) (assert ...)
253
250
  ```