F#をつつく0.1ー基礎も大事。はじめましてF#。
open System;;
let hello max =
let rec iter count =
if count < max then begin
if count = 0 then Printf.printf "hello indre\n";
Console.Write(count.ToString() + "\t");
iter ( count + 1 )
end
in
iter 0;;
hello 10;;
Console.WriteLine("good-by");;
Console.ReadLine();;