That's an interesting remark about security. You know this is already a problem with today's strings right? I can even fool the the syntax highlighter here:
print("""
Validating password...
""")
guard user.validatePassword(password) else {
fatalError("get out!")
}
print("""
Password is valid!
""")
I'm not sure what the solution is.