Skip to content

Commit b23459a

Browse files
author
ken
committed
commit
1 parent 9786be6 commit b23459a

File tree

1 file changed

+77
-7
lines changed

1 file changed

+77
-7
lines changed

Diff for: contents/entries/entry0/entry.md

+77-7
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Accordingly, *SpaceTime* can deal with Indefinite sequence such as [Natural numb
220220
(map (CONSOLE))
221221
)
222222
```
223-
`Evalation`
223+
`Evaluation`
224224
```
225225
("hello World")
226226
```
@@ -239,7 +239,7 @@ hello World
239239
(map (CONSOLE))
240240
)
241241
```
242-
`Evalation`
242+
`Evaluation`
243243
```
244244
("hello World")
245245
```
@@ -252,23 +252,93 @@ hello World
252252
---
253253
###Boolean
254254

255+
`Code`
256+
```
257+
(3 (== (3)) )
258+
```
259+
`Evaluation`
260+
```
261+
(true)
262+
```
263+
264+
265+
`Code`
266+
```
267+
(3 (== (5)) )
268+
```
269+
`Evaluation`
270+
```
271+
(false)
272+
```
273+
274+
275+
`Code`
276+
```
277+
(2 (> (1)) )
278+
```
279+
`Evaluation`
280+
```
281+
(true)
282+
```
283+
284+
`Code`
285+
```
286+
(2 (< (1)) )
287+
```
288+
`Evaluation`
289+
```
290+
(false)
291+
```
255292

256293
`Code`
257294
```
258295
(
259-
"hello World"
260-
(map (CONSOLE))
261-
(map (CONSOLE))
296+
"foo"
297+
(
298+
if ( ( 3 (==(3) ) )
299+
"bar"
300+
)
301+
)
262302
)
263303
```
264-
`Evalation`
304+
`Evaluation`
265305
```
266-
("hello World")
306+
("bar")
307+
```
308+
309+
`Code`
310+
```
311+
(
312+
"foo"
313+
(
314+
if ( ( 3 (==(5) ) )
315+
"bar"
316+
)
317+
)
318+
)
319+
```
320+
`Evaluation`
321+
```
322+
("foo")
267323
```
268324

325+
326+
327+
328+
329+
330+
331+
269332
---
270333

271334

272335

273336

337+
338+
339+
340+
341+
342+
343+
274344
\[----entry1-----](http://localhost:18080/contents/entries/entry1/entry.html)

0 commit comments

Comments
 (0)