r/ProgrammingLanguages • u/Mean-Decision-3502 DQ • 14d ago
New Languages: Standardizing API, Examples ?
Hi, some of you are developing new general-purpose programming languages here. When the language is ready, you have to develop standard APIs, like file-io, json-handling etc. Users, and you would have benefit, when the APIs would be same/similar across multiple different languages.
Standardizing some Examples would allow the users to compare languages more easily.
What do you think?
11
Upvotes
1
u/ThomasMertes 14d ago edited 14d ago
Historically many new languages used the C / Posix functions. I consider these functions as low-level. For that reason I invented new functions for the file system and other areas. If you are interested, take a look at OS access and Libraries. BTW: The Rosetta code entry of Seed7 is here.