godot/modules/gdscript/tests/scripts/parser/features/semicolon_as_end_statement.gd

func test():
	print("A"); print("B")

	# Multiple semicolons and whitespace between them is also valid.
	print("A");   ;;;;; ; print("B");;