It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Its not personal, its just business! Reky Bongso
- Reky Bongso
- rekybongso@gmail.com
- Newbie front end developer
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
# Square the number
def sqr(x)
return x*x
end
# See how it works.
(rand(4) + 2).times {
a = rand(300)
print a,"^2 = ", sqr(a), "\n"
}
print "\n"
# Don't need a parm.
def boom
print "Boom!\n"
end
boom
boom
