Skip to content

Instantly share code, notes, and snippets.

@avestura
Created September 3, 2022 08:25
Show Gist options
  • Save avestura/830efe72c131a9ef3dd07f3442e4b7b9 to your computer and use it in GitHub Desktop.
Save avestura/830efe72c131a9ef3dd07f3442e4b7b9 to your computer and use it in GitHub Desktop.
Star Rating F# (πŸŒ•πŸŒ•πŸŒ•πŸŒ•πŸŒ‘)
let getRating n =
let (*) = String.replicate
(n * "πŸŒ•") + ((5 - n) * "πŸŒ‘")
getRating 5 |> System.Console.WriteLine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment