fez-lisp 1.2.61 → 1.3.0

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
@@ -54,9 +54,9 @@ World
54
54
  ```
55
55
 
56
56
  ```lisp
57
- (let Fizz (string char:F char:i char:z char:z))
58
- (let Buzz (string char:B char:u char:z char:z))
59
- (let FizzBuzz (string Fizz Buzz))
57
+ (let Fizz (array char:F char:i char:z char:z))
58
+ (let Buzz (array char:B char:u char:z char:z))
59
+ (let FizzBuzz (array Fizz Buzz))
60
60
 
61
61
  (let fizz-buzz (lambda n
62
62
  (cond
@@ -152,9 +152,9 @@ eval(
152
152
  import { fez } from 'fez-lisp'
153
153
  fez(
154
154
  `
155
- (let Fizz (string char:F char:i char:z char:z))
156
- (let Buzz (string char:B char:u char:z char:z))
157
- (let FizzBuzz (string Fizz Buzz))
155
+ (let Fizz (array char:F char:i char:z char:z))
156
+ (let Buzz (array char:B char:u char:z char:z))
157
+ (let FizzBuzz (array Fizz Buzz))
158
158
 
159
159
  (let fizz-buzz (lambda n
160
160
  (cond