All Projects → mokevnin → Starter

mokevnin / Starter

Programming Languages

erlang
1774 projects

install

make

examples

1> starter_pool:evaluate(python, "print 1;").
{ok,[{stdout,[<<"1\n">>]}]}

2> starter_pool:evaluate(ruby, "puts 1; put 1").
{error,[{exit_status,256},
        {stdout,[<<"1\n">>]},
        {stderr,[<<"/var/tmp/starter/e0edcf4c-09df-11e4-9385-0800270c413e:1:in `<main>'">>,
                 <<": ">>,<<"undefined method `put' for main:Object">>,
                 <<" (">>,<<"NoMethodError">>,<<")\n">>]}]}

3> starter_pool:evaluate(javascript, "console.log(1);").
{ok,[{stdout,[<<"1\n">>]}]}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].