Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

EXPRESS

< >

EXPRESS is a data notation created in 2004.

#1062on PLDB 20Years Old
Leet Sheet · Wikipedia

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 Example Token
Strings ✓ "Hello world" "

- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements

Built with Scroll v144.0.0