Created
April 7, 2018 15:17
-
-
Save rpalo/0a330835f886fdb5df14ef9b30814671 to your computer and use it in GitHub Desktop.
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
PS> "2" + 2 | |
22 # A string | |
PS> [Int] "2" + 2 | |
4 # An integer. The conversion only applies to the "2" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment