Measures Concepts
GitHub icon

Bla

Bla - Programming language

< >

Bla is a programming language created in 1994 by Wouter Van Oortmerssen.

#1828on PLDB 30Years Old


Example from the web:
map(f,[]) = [] map(f,[h|t]) = [f(h)|map(f,t)] qsort([],_) = [] qsort([h|t],lt) = append(qsort(filter(lambda(x) = lt(x,h),t),lt), [h|qsort(filter(lambda(x) = not lt(x,h),t),lt)]) stack[T]() = self where d = [] isempty() = d=[] push(x:T) do d:=[x|d] pop():T = d | [] -> nil -- raise stack_empty | [h|t] -> h do d:=t

Language features

Feature Supported Token Example
Comments ✓
-- A comment
Line Comments ✓ --
-- A comment
Semantic Indentation X

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout