Skip to content

Commit af69c11

Browse files
author
ken
committed
commit
1 parent b23459a commit af69c11

File tree

1 file changed

+62
-8
lines changed

1 file changed

+62
-8
lines changed

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

+62-8
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ hello World
281281
(true)
282282
```
283283

284+
284285
`Code`
285286
```
286287
(2 (< (1)) )
@@ -290,39 +291,92 @@ hello World
290291
(false)
291292
```
292293

294+
295+
---
296+
###Conditional
297+
293298
`Code`
294299
```
295300
(
296-
"foo"
301+
"default"
297302
(
298-
if ( ( 3 (==(3) ) )
299-
"bar"
303+
if (
304+
(3 (==(3)))
305+
("match")
300306
)
301307
)
302308
)
303309
```
304310
`Evaluation`
305311
```
306-
("bar")
312+
("match")
307313
```
308314

315+
309316
`Code`
310317
```
311318
(
312-
"foo"
319+
"default"
313320
(
314-
if ( ( 3 (==(5) ) )
315-
"bar"
321+
if (
322+
(3 (==(5)))
323+
("match")
316324
)
317325
)
318326
)
319327
```
320328
`Evaluation`
321329
```
322-
("foo")
330+
("default")
323331
```
324332

325333

334+
`Code`
335+
```
336+
(
337+
"default"
338+
(
339+
if (
340+
(5 (==(5)))
341+
("case1")
342+
)
343+
)
344+
(
345+
if (
346+
(9 (==(9)))
347+
("case2")
348+
)
349+
)
350+
)
351+
```
352+
`Evaluation`
353+
```
354+
("case2")
355+
```
356+
357+
358+
`Code`
359+
```
360+
(
361+
"default"
362+
(
363+
if (
364+
(5 (==(5)))
365+
("case1")
366+
)
367+
)
368+
(
369+
if (
370+
(9 (==(0)))
371+
("case2")
372+
)
373+
)
374+
)
375+
```
376+
`Evaluation`
377+
```
378+
("case1")
379+
```
326380

327381

328382

0 commit comments

Comments
 (0)