A snippet can be seen below from test_src/test.ts.
function test() {
console.log("Hello Snippets!")
}(From test_src/test.ts)
Another snippet can be seen below.
function test2() {
const test = () => {
console.log("Hello Again Snippets!")
}
}