a music composition language with a functional backbone

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)))))

A music composition language with a functional backbone

By Dave Yarwood

A music composition language with a functional backbone

Presented at Compose :: Conference, August 2018, Melbourne

  • 904