Given the following:
What is the outcome?
0b1101_1010 is an int binary integer literal (decimal 218). The print(int) overload is selected, so the program prints hello.
0b1101_1010
int
print(int)
hello
Community Discussion