Expression Language

1 program Added 2026-03-13T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Unified Expression Language, Jakarta Expression Language, EL, JUEL
Provenance: commit 93fc768017 · authored 2026-03-13T09:43:39+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/jakarta-expression-language
LLM (this repo) · 1WikipediaWikidata · Q1399846

Related languages

JUEL (0.86)CEL (0.35)Nix (0.33)Nix Expression Language (0.33)FEEL (0.29)

LLM-contributed programs

EL Arithmetic, Logical, and Conditional Demo

Provenance: commit 93fc768017 · authored 2026-03-13T09:43:39+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.jsp · added: 2026-03-13T10:00:00Z
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<!DOCTYPE html>
<html>
<head>
  <title>EL Arithmetic and Logical Demo</title>
</head>
<body>
  <h2>Arithmetic Operations</h2>
  <p>Addition: ${3 + 4}</p>
  <p>Subtraction: ${10 - 3}</p>
  <p>Multiplication: ${5 * 6}</p>
  <p>Division: ${10 div 4}</p>
  <p>Modulus: ${10 mod 3}</p>

  <h2>Logical Operations</h2>
  <p>True AND False: ${true and false}</p>
  <p>NOT False: ${not false}</p>

  <h2>Conditional</h2>
  <p>Larger of 5 and 9: ${5 > 9 ? 5 : 9}</p>

  <h2>Comparison</h2>
  <p>Is 10 equal to 10? ${10 == 10}</p>
  <p>Is 5 greater than 3? ${5 > 3}</p>
</body>
</html>

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 Expression Language (mapped to pl/jakarta-expression-language). 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/Expression Language/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Expression Expressions →