// Bun Snapshot v1, https://goo.gl/fbAQLP exports[`base no imports 1`] = ` "
Some note
Column A | Column B | Column C |
---|---|---|
Some | stuff |
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
}
" `; exports[`base custom lines 1`] = ` "This is some amazing quote
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)
}
}
"
`;