Difference between revisions of "Main Page"
From NoSQLZoo
Line 1: | Line 1: | ||
− | ==Run | + | |
− | <div class=q data-lang=" | + | ==Run Node.js Programs from your browser== |
+ | <div class=q data-lang="js"> | ||
Click the go button | Click the go button | ||
<div class=def> | <div class=def> | ||
− | + | console.log("Hello"); | |
</div> | </div> | ||
<div class=ans> | <div class=ans> | ||
− | + | console.log("Hello World"); | |
</div> | </div> | ||
</div> | </div> | ||
− | ==Run | + | ==Run Python Programs from your browser== |
− | <div class=q data-lang=" | + | <div class=q data-lang="py"> |
Click the go button | Click the go button | ||
<div class=def> | <div class=def> | ||
− | + | print "Hello" | |
</div> | </div> | ||
<div class=ans> | <div class=ans> | ||
− | + | print "Hello world" | |
</div> | </div> | ||
</div> | </div> | ||
− | |||
== Getting started == | == Getting started == | ||
* [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list] | * [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list] |
Revision as of 14:00, 10 July 2015
Run Node.js Programs from your browser
Click the go button
console.log("Hello");
console.log("Hello World");
Run Python Programs from your browser
Click the go button
print "Hello"
print "Hello world"