// Bun Snapshot v1, https://goo.gl/fbAQLP exports[`base no imports 1`] = ` "

Some title

Some note

Column A Column B Column C
Some stuff
" `; exports[`base single import 1`] = ` "

Here is a typescript snippet

export function sum(a: number, b: number): number {
  return a + b
}
" `; exports[`base multiple imports 1`] = ` "

Here is a typescript snippet

export function sum(a: number, b: number): number {
  return a + b
}

This is some amazing quote

" `; exports[`base custom lines 1`] = ` "

Bubble sort in go

func bubbleSort(arr []int) {
	len := len(arr)
	for i := 0; i < len-1; i++ {
		for j := 0; j < len-i-1; j++ {
			if arr[j] > arr[j+1] {
				arr[j], arr[j+1] = arr[j+1], arr[j]
			}
		}
	}
	fmt.Println("\nAfter Bubble Sorting")
	for _, val := range arr {
		fmt.Println(val)
	}
}
" `;