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

Bend

< >

Bend is a programming language created in 2023 by Victor Taelin.

#658on PLDB 1Years Old
Download source code:
git clone https://github.com/HigherOrderCO/Bend
HomepageSource Code

A massively parallel, high-level programming language


Example from the web:
# Defines the function Sum with two parameters: start and target def Sum(start, target): if start == target: # If the value of start is the same as target, returns start. return start else: # If start is not equal to target, recursively call Sum with # start incremented by 1, and add the result to start. return start + Sum(start + 1, target) def main(): # This translates to (1 + (2 + (3 + (...... + (999999 + 1000000))))) # Note that this will overflow the maximum value of a number in Bend return Sum(1, 1_000_000)
View source
- Build the next great programming language Add About Search Keywords Livestreams Labs Resources Acknowledgements Part of the World Wide Scroll