Markov
1 program
Added 2026-03-10T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Markov algorithm, Markov Algorithm Language
Provenance: commit 6a87d5fcb4 · authored 2026-03-10T18:32:46+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
String Substitution (Ruleset 1)
Provenance: commit 6a87d5fcb4 · authored 2026-03-10T18:32:46+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
# Markov Algorithm: string substitution example (Rosetta Code Ruleset 1)
# Input: 'I bought a B of As from T S'
# Expected output: 'I bought a bag of apples from my brother'
A -> apple
B -> bag
S -> shop
T -> the
the shop -> my brother
a never used -> .terminating rule.