View Problem

Perform an action a fixed number of times with a counter

Display the string "10 .. 9 .. 8 .. 7 .. 6 .. 5 .. 4 .. 3 .. 2 .. 1 .. Liftoff!"
DiskEdit
ruby
10.downto(1) { |n| print n, " .. " }
puts "Liftoff!"
DiskEdit
csharp
for (int i = 10; i > 0; i--)
{
Console.Write("{0} .. ", i);
}

Console.WriteLine("Liftoff!");
DiskEdit
clojure
(dotimes [i 10]
(print (str (- 10 i) " .. ")))

(println "Liftoff!")
ExpandDiskEdit
fsharp
for i = 10 downto 1 do printf "%d .. " i done
printfn "Liftoff!"
ExpandDiskEdit
fsharp
// Repetition via ranging over a Sequence type
for i in {10 .. -1 .. 1} do printf "%d .. " i done ; printfn "Liftoff!"

Submit a new solution for ruby, csharp, clojure, or fsharp
There are 17 other solutions in additional languages (cpp, erlang, fantom, groovy ...)