Skip to content

Commit f21515e

Browse files
Ken OKABEKen OKABE
Ken OKABE
authored and
Ken OKABE
committed
commit
1 parent a5d637f commit f21515e

File tree

1 file changed

+52
-30
lines changed

1 file changed

+52
-30
lines changed

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

+52-30
Original file line numberDiff line numberDiff line change
@@ -299,12 +299,12 @@ hello World
299299
`Code`
300300
```
301301
(
302-
"default"
302+
  3 (==(3)) 
303303
(
304-
if (
305-
(3 (==(3)))
304+
if (
306305
("match")
307-
)
306+
("mismatch")
307+
)
308308
)
309309
)
310310
```
@@ -317,38 +317,49 @@ hello World
317317
`Code`
318318
```
319319
(
320-
"default"
320+
  3 (==(5)) 
321321
(
322-
if (
323-
(3 (==(5)))
322+
if (
324323
("match")
325-
)
324+
("mismatch")
325+
)
326326
)
327327
)
328328
```
329329
`Evaluation`
330330
```
331-
("default")
331+
("mismatch")
332332
```
333333

334334

335335
`Code`
336336
```
337337
(
338-
"default"
338+
  3 (==(5)) 
339339
(
340-
if (
341-
(5 (==(5)))
340+
if (
342341
("case1")
343-
)
344-
)
345-
(
346-
if (
347-
(9 (==(9)))
348-
("case2")
349-
)
342+
(
343+
  3 (==(3)) 
344+
(
345+
if (
346+
("case2")
347+
(
348+
  3 (==(3)) 
349+
(
350+
if (
351+
("case3")
352+
("mismatch")
353+
)
354+
)
355+
)
356+
)
357+
)
358+
)
359+
)
350360
)
351361
)
362+
352363
```
353364
`Evaluation`
354365
```
@@ -359,24 +370,35 @@ hello World
359370
`Code`
360371
```
361372
(
362-
"default"
373+
  3 (==(5)) 
363374
(
364-
if (
365-
(5 (==(5)))
375+
if (
366376
("case1")
367-
)
368-
)
369-
(
370-
if (
371-
(9 (==(0)))
372-
("case2")
373-
)
377+
(
378+
  3 (==(1)) 
379+
(
380+
if (
381+
("case2")
382+
(
383+
  3 (==(3)) 
384+
(
385+
if (
386+
("case3")
387+
("mismatch")
388+
)
389+
)
390+
)
391+
)
392+
)
393+
)
394+
)
374395
)
375396
)
397+
376398
```
377399
`Evaluation`
378400
```
379-
("case1")
401+
("case3")
380402
```
381403

382404

0 commit comments

Comments
 (0)