Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 378 Bytes

File metadata and controls

20 lines (16 loc) · 378 Bytes

This is a test of Simple Embeded Markdown Code Snippets

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!")
    }
}