panlang
Run any code in Node.js
Demo
;
const ruby = Enginesruby;const python = Enginespython;const scala = Enginesscala;const sh bash csh dash ksh tcsh zsh = Enginesshell; ; ; ; ;
hello from bash!
hello from python!
hello from ruby!
hello from scala!
Compiled languages? Alternative compilers? No problem!
const clang gcc = Enginesc; const c_hello = `\#include <stdio.h>int main() { // printf() displays the string inside quotation printf("hello from c "); return 0;}`; ; ; const go = Enginesgo; const go_hello = `\package mainimport "fmt"func main() { fmt.Println("hello from go!")}`; ;
hello from c via gcc!
hello from c via clang!
hello from go!