Back to Home

Documentation

Everything you need to know about using our online code editor and compiler.

Getting Started

Welcome to our online code editor! This platform allows you to write, compile, and run code in multiple programming languages directly in your browser.

1. Choose a Language

Select your preferred programming language from our wide range of supported options.

2. Write Code

Use our feature-rich editor with syntax highlighting and auto-completion.

3. Run & Test

Execute your code and see the output in real-time with our built-in compiler.

4. Share & Collaborate

Share your code snippets with others and collaborate in real-time.

Code Editor Features

Our code editor comes packed with features to enhance your coding experience:

  • Syntax Highlighting

    Automatic language detection and beautiful syntax highlighting for better code readability.

  • Auto-Completion

    Smart suggestions and auto-completion for faster coding.

Code Examples

Here are some example code snippets you can try:

Python Example (Fibonacci)

def fibonacci(n):
    if n <= 1:
        return n
    else:
        return fibonacci(n-1) + fibonacci(n-2)

# Test the function
print(fibonacci(10))

JavaScript Example (Factorial)

const calculateFactorial = (n) => {
  if (n === 0) return 1;
  return n * calculateFactorial(n - 1);
};

console.log(calculateFactorial(5));

Sharing & Collaboration

Share your code snippets with others and collaborate in real-time:

Share Code

Generate a unique link to share your code with anyone. They can view, run, and even fork your code.

Real-time Collaboration

Work together with team members in real-time with our collaborative editing features.

Pro Features

Upgrade to Pro to unlock additional features and capabilities:

Extended Runtime

Longer execution time limits for complex computations.

Priority Execution

Your code runs first in our compilation queue.

Advanced Features

Access to AI assistance and additional development tools.

Gemini

Code Craft Assistant

👋 Hi! I'm your Code Craft assistant.

Ask me anything about the platform!

Try typing @ to see available commands