Chapter 3 - Section 8

	fun main(args: Array<String>) {
		val builder = StringBuilder("To be or not to be\n")
				.append("that is the question\n")
				.append("Whether 'tis nobler in the mind\n")
				.append("to suffer the slings and arrows")

		val result = builder.toString()
		println(result)
	}