Pure Programmer
Blue Matrix


Cluster Map

Project: The Farmer in the Dell (Revisited)

Write a program that prints the lyrics to the song "The Farmer in the Dell". Use a map to hold each person in the song as the key and the person that they "take" as the value. Write a function that prints one verse that takes the key as an argument and prints the correct verse. Write another function to print all the verses.

See [[The Farmer in the Dell]]

Output
$ swiftc FarmerInTheDell2.swift -I . -L . -lUtils error: link command failed with exit code 1 (use -v to see invocation) ld: library not found for -lUtils clang: error: linker command failed with exit code 1 (use -v to see invocation)

Solution