Example
@coderunnerbot run ```js let a = 1; while (a < 10) { console.log("Hello World".repeat(a)); a++; } ```
@coderunnerbot run ```c #include <stdio.h> int main() { printf("Hello World\n"); return 0; } ```
Run code right on twitter
@coderunnerbot run ```js let a = 1; while (a < 10) { console.log("Hello World".repeat(a)); a++; } ```
@coderunnerbot run ```c #include <stdio.h> int main() { printf("Hello World\n"); return 0; } ```
@coderunnerbot render ```html <button id="c">Count</button> ``` ```css body{ background: #ff5500; } ``` ```js let a = 0; document.getElementById("c").addEventListener("click", () => { console.log(++a); }); ```
@coderunnerbot mdn Web APIs