Test File 3 (SWIFT code) - Marty09/Test-File-SWIFT-code GitHub Wiki

func Line1() -> String { return "Three rings to the Elven-kings who live beneath the sky," } func Line2() -> String { return "Seven rings to the Dwarf-lords in their halls of stone," } func Line3() -> String { return "Nine rings for Mortal Men, doomed to die," } func Line4() -> String { return "One for the Dark Lord on his dark throne," } func Line5() -> String { return "In the land of Mordor where shadows lie." } func Line6() -> String { return "One Ring to rule them all, One ring to find them," } func Line7() -> String { return "One Ring to bring them all and in the darkness bind them," } func Line8() -> String { return "In the land of Mordor where shadows lie." } print(Line1()) print(Line2()) print(Line3()) print(Line4()) print(Line5()) print(Line6()) print(Line7()) print(Line8())