Code Example Page

Published on: 3/1/2024

Example Code

This is an example of inline code highlighting.

This is an example of a code block with a language specified:

javascript
const hello = "Hello, World!";
console.log(hello);
typescript
const hello: string = "Hello, World!";
console.log(hello);
python
hello = "Hello, World!"
print(hello)