Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 828 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 828 Bytes

Code Execution

Code Execution plugin for TypingMind powered by Judge0.

https://t.co/gPO0ubB7kh

Get Started

  1. Get your code execution API key here.
  2. Click the Settings tab and enter your RapidAPI Key.

Supported Languages

C, C++, Go, Python, Java, JavaScript, Ruby.

Example Usage

Run the following Python code:
def fibonacci(n):
    if n <= 1:
        return n
    else:
        return fibonacci(n-1) + fibonacci(n-2)
print(fibonacci(10))

Run this C++ code:
#include <iostream>

int main() {
    std::cout << "Hello from TypingMind!\n";
    return 0;
}

Contribute

Your contributions are welcome via GitHub.