Liso is a data notation created in 2014 by Olivier Breuleux.
#1960on PLDB | 9Years Old | 0Books |
0Papers |
Implemention of O-Expressions idea in Racket.
@varsrec
odd?[n] =
@if n == 0:
#f
even?[n - 1]
even?[n] =
@if n == 0:
#t
odd?[n - 1]:
even?[30]