Created
February 27, 2020 19:34
-
-
Save T-Pham/2c14c38cce2cd24eacc83e59558df739 to your computer and use it in GitHub Desktop.
jk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
print("Type your age: ") | |
if let input = readLine() { | |
print("You typed \(input)\n") | |
} | |
print("Type your birth year: ") | |
if let input = readLine() { | |
print("You typed \(input)\n") | |
} | |
print("this year is: \(2020)") //will be correct for the rest of the year and as long as user enters inputs correctly. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment