Manual

Google Confidential and Proprietary
Ex: Indentation
Code
if (x == 5)
while (x > 1) # R-bleed bug? ;)
x <- x - 1
print(x)
Corrected code
if (x == 5)
while (x > 1)
x <- x - 1
print(x)