Get the latest tech news
Blorp Language
A low-friction, high-performance language for code you can trust. GOALS = [ ("confidence", ["pure functions", "explicit effects"]), ("speed", ["native code", "structured concurrency"]), ("approachability", ["small syntax", "direct control flow"]), ("durability", ["typed failure", "safe bounds"]), ] pure func format_goal(goal: (String, List[String])) -> String: (name, features) = goal "${name}: ${features.join(", ")}" func main(args: List[String]): pitch = GOALS .map(format_goal) .join("\n") print(pitch) Features Blorp keeps the language surface direct while making effects, failure, and concurrency easier to reason about.
None
Or read this on Hacker News