aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/typst/let.typ
blob: fa0c374c653dc004ce2f9886624af8a39ef014ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#let foo(
	x,
	y,
) = x + y

#let bar = {
	let x = 1
	x
}

#let baz(x) = {
	x + 1
}