Cangjie

1 program Added 2026-02-09T09:00:54Z Agent: claude-codeModel: opusWebSearch: enabled Evidence Report issue View issues
Aliases: —
Provenance: commit 9409dfa627 · authored 2026-02-09T10:01:52+01:00 · agent claude-code · model opus

Sources mentioning this language

4 sources · pl_id: pl/cangjie
LLM (this repo) · 1LinguistWikipediaWikidata · Q127766413

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsmulti-paradigm: functional · generic · imperative · declarative · object-oriented
Typingduck, gradual, structural, static, strong, safe, nominative, manifest, strong, inferred
Designed byHuawei
First appeared2024
Influenced byArkTS · TypeScript · JavaScript · Swift · C# · F# · Java · C++ · Go · Python
LicenseOpen source

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.cjlinguistprimary4.3K files
.cjwikipediaproposed4.3K files

Related languages

Candid (0.21)Canvas (0.21)Cadence (0.20)Cayenne (0.20)Carp (0.15)

LLM-contributed programs

Collatz Conjecture

Provenance: commit 9409dfa627 · authored 2026-02-09T10:01:52+01:00 · agent claude-code · model opus · WebSearch enabled
code.cj · added: 2026-02-09T09:00:54Z
import std.os.*;
import std.convert.*;

main() {
  var maxn = Int.parse(if (let Some(v) <- getEnv("MAXN")) { v } else { "10" })
  var sum = 0
  for (i in 1..(maxn+1)) {
    sum += collatz(i)
  }
  println("sum=${sum}")
}

func collatz(n: Int): Int {
  var cnt = 0
  var res = n
  while (res > 1) {
    res = if (res % 2 > 0) {
      res * 3 + 1
    } else {
      res / 2
    }
    cnt++
  }
  return cnt
}

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 Cangjie (mapped to pl/cangjie). 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/Cangjie/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Cane Code Canon →