Skip to content

judge0/typingmind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.