Blockly
1 program
Added 2026-02-10T15:02:36Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 29b6035ac1 · authored 2026-02-10T16:03:35+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/blocklyWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | Google · MIT |
|---|---|
| First appeared | 2012 |
| License | Apache License 2.0 |
| Homepage | http://developers.google.com/blockly |
Related languages
LLM-contributed programs
Sum 1 to 10
Provenance: commit 29b6035ac1 · authored 2026-02-10T16:03:35+01:00 · agent claude-code · model sonnet · WebSearch disabled
<xml xmlns="https://developers.google.com/blockly/xml">
<block type="variables_set" x="20" y="20">
<field name="VAR">sum</field>
<value name="VALUE">
<block type="math_number">
<field name="NUM">0</field>
</block>
</value>
<next>
<block type="controls_for">
<field name="VAR">i</field>
<value name="FROM">
<block type="math_number">
<field name="NUM">1</field>
</block>
</value>
<value name="TO">
<block type="math_number">
<field name="NUM">10</field>
</block>
</value>
<value name="BY">
<block type="math_number">
<field name="NUM">1</field>
</block>
</value>
<statement name="DO">
<block type="variables_set">
<field name="VAR">sum</field>
<value name="VALUE">
<block type="math_arithmetic">
<field name="OP">ADD</field>
<value name="A">
<block type="variables_get">
<field name="VAR">sum</field>
</block>
</value>
<value name="B">
<block type="variables_get">
<field name="VAR">i</field>
</block>
</value>
</block>
</value>
</block>
</statement>
<next>
<block type="text_print">
<value name="TEXT">
<block type="variables_get">
<field name="VAR">sum</field>
</block>
</value>
</block>
</next>
</block>
</next>
</block>
</xml>
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.)