by mangatmodi on 1/27/20, 12:15 PM with 7 comments
I have worked with Go, Python, Scala and Kotlin, and seems now all of them fail somewhere.
Scala and Kotlin don't compile to Binary and my team doesn't want to maintain JVM dependency
Python is dynamically typed
Is C++ or any other language viable?
by gus_massa on 1/27/20, 1:01 PM
It's JIT-compiled, but it's doesn't use the JVM. And you can create an executable of your program if you wish.
It's generally faster than Python but not as fast as C. YMMV. https://benchmarksgame-team.pages.debian.net/benchmarksgame/... The comparison use the (Untyped) Racket instead of Typed Racket. Typed Racket usually has a longer compilation time but a faster run time, because it has more optimizations. YMMV.
by brudgers on 1/27/20, 7:00 PM
by _0ffh on 1/27/20, 12:35 PM
by fiedzia on 1/27/20, 12:18 PM