Skip to content

3p3r/seplang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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?>

About

A Polyglot Programming Language That Reminds You of Good ol' Days of PHP.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published