Last active
November 20, 2018 13:45
-
-
Save rezzzza/a604eeba165772fcff844013a6f23f11 to your computer and use it in GitHub Desktop.
Ruby variables
This file contains 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
# booleans | |
true_boolean = true | |
# string | |
an_string = "test string" | |
# symbol | |
a_symbol = :my_symbol | |
# float | |
float_number = 4.15 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment