ClojureScript

1 program Added 2025-10-22T09:54:30Z Model: openai/gpt-4o-miniTemp: 0.4 Evidence Report issue View issues
Aliases: ClojureScript, CLJS
Provenance: commit 121864a944 · authored 2025-10-22T11:54:30+02:00 · model openai/gpt-4o-mini

Sources mentioning this language

3 sources · pl_id: pl/clojurescript
LLM (this repo) · 1PldbPygments

Extensions claimed by this language

1 claim. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.cljspygmentsprimary1.4M files

Related languages

Clojure (0.58)PureScript (0.36)ReScript (0.32)CoffeeScript (0.30)CubeScript (0.30)

LLM-contributed programs

TodoMVC in ClojureScript

Provenance: commit 121864a944 · authored 2025-10-22T11:54:30+02:00 · model openai/gpt-4o-mini · Temp 0.4
code.cljs · license: MIT · added: 2025-10-22T09:54:30Z
(ns todomvc.core
  (:require [re-frame.core :as re-frame]
            [reagent.core :as reagent]))

(defn todo-item [item]
  [:li [:input {:type "checkbox" :checked (:completed item)}]
      (:title item)])

(defn todo-list [todos]
  [:ul (map todo-item todos)])

(defn main-view []
  (let [todos (re-frame/subscribe [:todos])]
    (fn []
      [:div
       [:h1 "Todo List"]
       [todo-list @todos]])))

(re-frame/reg-event-db
  :initialize
  (fn [_ _]
    {:todos [{:title "Learn ClojureScript" :completed false}
              {:title "Build a Todo App" :completed false}]}))

(re-frame/reg-sub
  :todos
  (fn [db _]
    (:todos db)))

(defn ^:export init []
  (re-frame/dispatch [:initialize])
  (reagent/render [main-view] (.getElementById js/document "app")))

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 ClojureScript (mapped to pl/clojurescript). 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/ClojureScript/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Clojure CLR CLooP →