|
|
|
|
|
by BatteryMountain
1602 days ago
|
|
No.
You just build one abstraction and then use a code generator to build a client for different targets.
So as long as you have good developers with an interest in code generation and that will stick around for a few years to maintain the generators, then it works out fine. Resist the temptation to create a new DSL or programming language. Pick a language with a strict compiler, good typing system and good reflection capabilities and you are good to go. Ideally you code your app/abstraction once and then then everything else gets generated automatically by some build pipeline. |
|