seplang
v0.0.1
Published
A Polyglot Programming Language That Reminds You of Good ol' Days of PHP.
Downloads
4
Readme
seplang
A Polyglot Programming Language That Reminds You of Good ol' Days of PHP.
mvp
<?fk python
from math import sqrt
def quadratic(a, b, c):
x1 = -b / (2*a)
x2 = sqrt(b**2 - 4*a*c) / (2*a)
return (x1 + x2), (x1 - x2)
fk?>
// this is some comment in between
<?fk javascript
console.log(<?py quadratic(c=31, b=93, a=62) py?>);
fk?>