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

BARE

< >

BARE is an interface design language created in 2020.

#2232on PLDB 4Years Old
Homepage

BARE is a simple binary representation for structured application data.


Example from the web:
type PublicKey data[128] type Time str # ISO 8601 type Department enum { ACCOUNTING ADMINISTRATION CUSTOMER_SERVICE DEVELOPMENT # Reserved for the CEO JSMITH = 99 } type Address list<str>[4] # street, city, state, country type Customer struct { name: str email: str address: Address orders: list<struct { orderId: i64 quantity: i32 }> metadata: map<str><data> } type Employee struct { name: str email: str address: Address department: Department hireDate: Time publicKey: optional<PublicKey> metadata: map<str><data> } type TerminatedEmployee void type Person union {Customer | Employee | TerminatedEmployee}
type enum u8 u16 u32 u64 uint i8 i16 i32 i64 int f32 f64 bool void data string optional map
View source
- Build the next great programming language About Keywords Resources Acknowledgements Part of the World Wide Scroll