Elevate Your Coding Experience

Explore, Collaborate, and Innovate with our versatile compilers and interpreters.

Python Playground
python
project
main.py
main.py

1
print("Hello, world!")
C Playground
c
project
main.c
main.c

1
2
3
4
5
6
#include <stdio.h>

int main() {
    printf("Hello, world!\n");
    return 0;
}
Cpp Playground
cpp
project
main.cpp
main.cpp

1
2
3
4
5
6
#include <iostream>

int main() {
    std::cout << "Hello, world!" << std::endl;
    return 0;
}
Csharp Playground
csharp
project
Program.cs
Helpers
Program.cs

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
using System;

namespace MyCSharpProject
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello, world!");
        }
    }
}
Java Playground
java
project
Main.java
Main.java

1
2
3
4
5
public class Main {
    public static void main(String[] args) {
        System.out.println("Hello, world!");
    }
}
Nodejs Playground
nodejs
nodejs_server
server.js
README.md
server.js

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
const http = require('http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('Hello, World!');
});

server.listen(port, hostname, () => {
  // console.log(`Server running at http://${hostname}:${port}/`);
});
Php Playground
php
project
index.php
includes
css
js
images
index.php

1
<?php echo 'Hello, world!'; ?>
Javascript Playground
javascript
project
js
js

1

Rust Playground
rust
project
main.rs
main.rs

1
2
3
fn main() {
    println!("Hello, world!");
}
Ruby Playground
ruby
ruby_project
lib
bin
lib

1

Typescript Playground
typescript
typescript_project
src
tsconfig.json
package.json
node_modules
src

1

React Playground
react
react_app
src
public
src

1

Flask Playground
flask
flask_app
app.py
templates
app.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from flask import Flask

app = Flask(__name__)

@app.route('/')
def index():
    return 'Hello, World!'

if __name__ == '__main__':
    app.run(debug=True)
Django Playground
django
django_project
manage.py
django_project
app
manage.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# Django's command-line utility for administrative tasks
import os
import sys

if __name__ == '__main__':
    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
    try:
        from django.core.management import execute_from_command_line
    except ImportError as exc:
        raise ImportError(
            "Couldn't import Django. Are you sure it's installed and "
            "available on your PYTHONPATH environment variable? Did you "
            "forget to activate a virtual environment?"
        ) from exc
    execute_from_command_line(sys.argv)
Dsa Playground
dsa
dsa_project
data_structures
algorithms
utils
tests
main.py
data_structures

1

Sass Playground
sass
sass_project
src
package.json
README.md
src

1

Kotlin Playground
kotlin
kotlin_project
src
README.md
src

1

Asp Playground
asp
asp_net_project
src
README.md
src

1

Angular Playground
angular
angular_project
src
package.json
src

1

R Playground
r
r_project
src
README.md
src

1