Pure Programmer
Blue Matrix


Cluster Map

Project: Password Phrase

One way to come up with a password is to think of a long phrase that is easy to remember, then take the first letter of each word in the phrase to compose the password. Write a program that defines a string constant with the phrase, then prints out the password composed from the first letter of each word in the phrase.

Output
$ swiftc PasswordPhrase.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