5 lines
94 B
FSharp
5 lines
94 B
FSharp
let rec countInOctal num : unit =
|
|
printfn "%o" num
|
|
countInOctal (num + 1)
|
|
|
|
countInOctal 1
|