# Numbers | |
whole_number = 5 | |
fractional_number = 3.2 | |
fractional_number_precision = 3.14159265358979323846264338327950288419716939937510582097494459 | |
# Strings | |
string_ascii = "hello" | |
string_unicode_bmp = "ΠΠ" | |
string_unicode_astral = "π©βπ©βπ§βπ¦" | |
string_unicode_nonnorm = "anΜos" # This is intentionally a combining tilde followed by n | |
# Booleans | |
true = true | |
false = false | |
# Null | |
null = null |