flâneur

codapi: Code Playgrounds

codapi.org · 407 words · saved by 1 readers

Embeddable code playgrounds for education, documentation, and fun.

for all types of technical writing Embed executable code snippets directly into your product documentation, online course or blog post. Python def greet(name): print(f"Hello, {name}!") greet("World") TypeScript const greet = (name: string) => { console.log(`Hello, ${name}!`) } greet("World") SQL create table data(message text); insert into data values ('Hello, World!'); select * from data; Bash greet() { echo "Hello, $1!" } greet "World" C #include <stdio.h> void greet(const char* name) { printf("Hello, %s!\n", name); } int main() { greet("World"); } and many more! Increase…

saved by

related reading