EmberScript
1 program
Added 2026-02-28T12:25:02Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Ember Script
Provenance: commit aed3afa19b · authored 2026-02-28T13:25:31+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
4 sources · pl_id:
pl/emberscriptExtensions 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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.em | linguist | primary | 43.9K files |
.emberscript | linguist | secondary | 10 files |
Related languages
LLM-contributed programs
Simple Greeting App
Provenance: commit aed3afa19b · authored 2026-02-28T13:25:31+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
# Simple Greeting App in EmberScript
App = Ember.Application.create()
App.Person = Ember.Object.extend
firstName: null
lastName: null
fullName: (->
"#{@get 'firstName'} #{@get 'lastName'}"
).property('firstName', 'lastName')
App.IndexController = Ember.ObjectController.extend
greeting: (->
"Hello, #{@get 'fullName'}!"
).property('fullName')
App.IndexRoute = Ember.Route.extend
model: ->
App.Person.create firstName: 'World', lastName: ''
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.)