Welcome to mirror list, hosted at ThFree Co, Russian Federation.

if-in-loop.expect « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6514ae74927ff4336279112d5570499a71d6b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(
	for i in a b c
	do
		if false
		then
			echo "err"
			exit 1
		fi ?!AMP?!
		foo
	done ?!AMP?!
	bar
)