Trying to run the example on the first page with DrRacket, version 7.7
#lang planet breuleux/liso
fib[n] =
@if n <= 1:
n
fib[n - 1] + fib[n - 2]
fib[30]
I get the following error.
Welcome to DrRacket, version 7.7 [3m].
Language: planet breuleux/liso, with debugging; memory limit: 128 MB.
Operators cannot be mixed in the order given <= :
Interactions disabled.
Trying to run the example on the first page with DrRacket, version 7.7
I get the following error.