Observable is a programming language created in 2017 by Mike Bostock.
| #352on PLDB | 9Years Old |
git clone https://github.com/observablehq/runtimeA partially open source derivative of Javascript modified for dataflow that powers the Observable data science web app.
{
let x = 0;
for (let i = 1; i <= 100; ++i) {
x += i;
}
return x;
}| Feature | Supported | Example | Token |
|---|---|---|---|
| Line Comments | ✓ | // A comment | // |
| Comments | ✓ | ||
| Semantic Indentation | X |