File: semwhitespace_ex.src

package info (click to toggle)
node-jison 0.4.17%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 348 kB
  • ctags: 57
  • sloc: yacc: 32; makefile: 16; sh: 3
file content (12 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
if (a+b):
	print "this line has trailing spaces"   
	if (123-b):
		print "this one does not"
	else:
	print "will error until indentation corrected"
		print "correctly indented"
	print "another line, a couple trailing tabs"		
		print "unexpected indent"

print "end of program"