@@ -8,13 +8,13 @@ A very cool language
* Sometimes works
## Syntax
```go
```swift
func fib[n: I64] : I64
if n <= 1
return n
return fib(n-2) + fib(n-1)
func main[] : I64
for i in 0..20
for i in 0:20
fib(i) |> I64.to_string() |> print()
```
The note is not visible to the blocked user.