TouchDevelop

1 program Added 2026-03-12T00:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: TD
Provenance: commit 7d478dcba7 · authored 2026-03-12T23:29:07+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/touchdevelop
LLM (this repo) · 1Pldb

Related languages

VDM (0.12)JADE (0.10)Toit (0.10)Toka (0.10)TOM (0.10)

LLM-contributed programs

Fibonacci sequence

Provenance: commit 7d478dcba7 · authored 2026-03-12T23:29:07+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.td · license: Apache-2.0 · added: 2026-03-12T00:00:00Z
// Fibonacci sequence calculator in TouchDevelop
action fibonacci(n : Number) returns Number
  if n <= 1 then
    return n
  end
  var a := 0
  var b := 1
  var i := 2
  while i <= n do
    var tmp := a + b
    a := b
    b := tmp
    i := i + 1
  end
  return b
end

action main()
  var i := 0
  while i <= 15 do
    wall→add text("fib(" + i→to string + ") = " + fibonacci(i)→to string)
    i := i + 1
  end
end

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

Contribute — propose a file extension

Tell us where to find evidence about TouchDevelop (mapped to pl/touchdevelop). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/TouchDevelop/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← touchdesigner Tower →