HybridnetiX
Hybrid Language
Hybrid between Python and C++
Like C++ statically typed and compiled
Like Python indented and interpreted
Yes, it has both compiler and interpreter
For different purposes
Euclid algorithm Example :
int euclid(int a int b) ::
while b != 0 ::
if a > b ::
a : a - b
else ::
b : b - a
return a
Comments
Post a Comment