Code Execution plugin for TypingMind powered by Judge0.
- Get your code execution API key here.
- Click the Settings tab and enter your RapidAPI Key.
C, C++, Go, Python, Java, JavaScript, Ruby.
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;
}
Your contributions are welcome via GitHub.