RosettaCodeData/Task/Multiplication-tables/Logo/multiplication-tables.logo

14 lines
231 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
to mult.table :n
type "| | for [i 2 :n] [type form :i 4 0] (print)
(print)
for [i 2 :n] [
type form :i 2 0
for [j 2 :n] [
type ifelse :i > :j ["| |] [form :i*:j 4 0]
]
(print)
]
end
mult.table 12