mimium is a programming language created in 2019 by Tomoya Matsuura.
#908on PLDB | 5Years Old |
git clone https://github.com/mimium-org/mimium
mimium (MInimal Musical medIUM) a programming language as an infrastructure for sound and music.
// A minimal example below generates a sinewave of 440Hz:
// minimal.mmm
twopi = 3.141595*2
sr = 48000
fn dsp(){
out = sin(now * 440 * twopi / sr)
return (out,out)
}