We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Hello World N Times
Hello World N Times
Sort by
recency
|
169 Discussions
|
Please Login in order to post a comment
Scala
I'm learning F# coming from TS and C#
what about this 2 liner? IHMO the beauty of thinking functional is not thinking about for loops but in term of sequences
Carbon steel flanges serve as important connectors in industries by joining pipes, valves, and equipment. These flanges are primarily made from carbon steel, which is a cost-effective material with good strength and durability, making it a common choice for linking pipes in industrial systems.
I've implemented this coding for my webpage, and while I appreciate its features, I've encountered a problem. I would greatly appreciate any assistance or guidance to resolve the issue. Your help would be invaluable in ensuring the smooth functionality of my website. Thank you in advance for your support!
OCaml Solution :- let rec print n = if (n > 0) then begin print_endline "Hello World"; print (n - 1) end;;
let () = let n = read_int () in print n;;