A block quote:

Auto Racing began 5 minutes after the second car was built!!!

There fore There is no Replacement for Displacement!!!

Images & Horizontal Lines:

An image from the net:


Do you know who this is?



1967 Mustang

R code

2+2
## [1] 4
6/2
## [1] 3
y<-2+2

y
## [1] 4
x<-12/12

x
## [1] 1
q<-2*8*10

q
## [1] 160
b<-100

b
## [1] 100
b+q
## [1] 260
b+q/2
## [1] 180
z<- b+q/2

z
## [1] 180
y/z
## [1] 0.02222222
z/y
## [1] 45
z<- (b+10)/(q-2)

z
## [1] 0.6962025
z<-(q-2)/(b=10)

z
## [1] 15.8
z+.2
## [1] 16