CodeBlock
A syntax-highlighted code block component, built using react-syntax-highlighter
.
1const greet = (): void => {
2 console.log("Hello, world!");
3};
4
5greet();
Examples
Python
1def greet():
2 print("Hello, world!")
3
4greet()
Rust
1fn main() {
2 println!("Hello, world!");
3}
TypeScript
1const greet = (): void => {
2 console.log("Hello, world!");
3};
4
5greet();