Showing code

this is some inline code

this is some multiline code:

const a = 1;

console.log(a);

const b = "this is a string";

console.log(b);

function test() {
	const test = "this is a very long string, that should hopefully wrap onto multiple lines"; 

	console.log(test);
}