Languages Features Creators CSV Resources Challenges Add Language
GitHub icon

EXPRESS

EXPRESS - Data notation

< >

EXPRESS is a data notation created in 2004.

#846on PLDB 19Years Old 860Users
0Books 0Papers

EXPRESS is a standard data modeling language for product data. EXPRESS is formalized in the ISO Standard for the Exchange of Product model STEP (ISO 10303), and standardized as ISO 10303-11.. Read more on Wikipedia...


Example from the web:
SCHEMA Family; ENTITY Person ABSTRACT SUPERTYPE OF (ONEOF (Male, Female)); name: STRING; mother: OPTIONAL Female; father: OPTIONAL Male; END_ENTITY; ENTITY Female SUBTYPE OF (Person); END_ENTITY; ENTITY Male SUBTYPE of (Person); END_ENTITY; END_SCHEMA;
Example from hello-world:
const express = require('express') const app = express() app.get('/', (_, res) => res.send("Hello World")) app.listen(8080)

Language features

Feature Supported Token Example
Strings ✓ "
"Hello world"
hackett.html · express.html · groff.html

View source

- Build the next great programming language · Search · Day 209 · About · Blog · Acknowledgements · Traffic · Traffic Today · GitHub · feedback@pldb.com