August 2018, Melbourne
https://djy.io
@dave_yarwood
(that's me!)
https://alda.io
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML</title>
</head>
<body>
<div class="sort-of-important">
<p>I'm a paragraph!</p>
</div>
</body>
</html>
(defn fibonacci [n]
"Compute the nth Fibonacci number."
(case n
0 1
1 1
(+ (fibonacci (- n 1)) (fibonacci (- n 2)))))