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

sora

< >

sora is a programming language created in 2019.

#3179on 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 Example Token
Comments ✓ // A comment
Line Comments ✓ // A comment //
Semantic Indentation X
- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements · Part of the World Wide Scroll