SOUL
1 program
Added 2026-02-10T18:51:34Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: SOund Unified Language
Provenance: commit e9c310585c · authored 2026-02-10T19:52:39+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/soulRelated languages
LLM-contributed programs
Sine Wave Oscillator
Provenance: commit e9c310585c · authored 2026-02-10T19:52:39+01:00 · agent claude-code · model sonnet · WebSearch disabled
processor SineOscillator (float frequency)
{
output stream float out;
void run()
{
float phase = 0.0f;
let phaseIncrement = float (frequency * twoPi / processor.frequency);
loop
{
out << sin (phase);
phase += phaseIncrement;
if (phase >= twoPi)
phase -= twoPi;
advance();
}
}
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)