MIT '25, CS
redisPING
PONG
redis
A partial implementation of an asynchronous, multi-threaded, and multiplexed Redis server.
explorefn fibonacci(n: Int) -> Int {
if n <= 1 {
return n
}
let a = fibonacci(n - 1)
let b = fibonacci(n - 2)
return a + b
}
let result = fibonacci(10)
print(result)An AOT compiler for a custom language with a LLVM backend and Hindley-Milner type inference.
explore