fez-lisp 1.5.51 → 1.5.52

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
@@ -5,14 +5,14 @@
5
5
  </p>
6
6
 
7
7
  ```lisp
8
- (let fizz-buzz (lambda n
8
+ (let fezz-buzz (lambda n
9
9
  (cond
10
- (= (mod n 15) 0) "FizzBuzz"
11
- (= (mod n 3) 0) "Fizz"
10
+ (= (mod n 15) 0) "FezzBuzz"
11
+ (= (mod n 3) 0) "Fezz"
12
12
  (= (mod n 5) 0) "Buzz"
13
13
  (*) (from:integer->string n))))
14
14
 
15
- (|> (math:range 1 100) (array:map fizz-buzz) (array:spaces) (string))
15
+ (|> (math:range 1 100) (array:map fezz-buzz) (array:spaces) (string))
16
16
  ```
17
17
 
18
18
  ## [Try it in online editor](https://at-290690.github.io/fez/)