mirror of
https://github.com/github/codeql.git
synced 2026-04-17 21:14:02 +02:00
13 lines
261 B
Python
13 lines
261 B
Python
|
|
#Easily misread as x = 15
|
|
x = 015
|
|
|
|
#The extra 'o' alerts the reader that this is an octal literal
|
|
y = 0o15
|
|
|
|
#If this is a byte sized value then a hexadecimal might be clearer
|
|
y = 0x0d
|
|
|
|
#Or if it is a bit pattern then a binary value might be clearer
|
|
y = 0b1101
|