Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

sora

< >

sora is a programming language created in 2019.

#3319on PLDB 5Years Old


Example from the web:
func get(node: &mut Foo, k: usize) -> maybe &mut Foo { if k == 0 { return node // no semicolons, only newlines } else if let next = node->next { // node->next is a maybe &mut Foo, this accesses the value of the maybe type. return get(next, k-1) } else { return null } }

Language features

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

View source

- Build the next great programming language · About · Acknowledgements · Extensions · Day 630 · Donate · feedback@pldb.io