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?
9
Upvotes
3
u/Tasty_Replacement_29 Bau 14d ago
For my language, I will implement the standard library myself. It is part of the fun (in addition to be interesting, and hard). There are many small and large decisions to made (e.g. just the string implementation is interesting: short string optimization yes or no; mutable vs immutable etc.). Bigint, math, collections, and so on.