Kronos
1 program
Added 2026-02-13T11:32:46Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit f3e8fe2e8e · authored 2026-02-13T12:33:27+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Sine Wave Oscillator
Provenance: commit f3e8fe2e8e · authored 2026-02-13T12:33:27+01:00 · agent claude-code · model sonnet · WebSearch disabled
; Simple sine wave oscillator
Oscillator(freq) {
phase = Accumulate(freq / Rate-of(#1) * 2 * #pi)
Sin(phase)
}
; Main program: 440 Hz sine wave (A4 note)
Main() {
Oscillator(440)
}