Hello world
Hi! This is My first blog post!
Here are some types of test code snippets from markdown
- typescript
const test: string = 'Hello';
- lua
local test_function = function()
print('Hello')
end
- go
var test: string = "testing"
test2 := []int{1,2,3}
- rust
let test: &str = "testing";
let mut test2 = 123;
test2 = test2 + 3;