learning F#, it seems pretty cool, favourite functional language so far.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Lachlan Jacob 5d02b40ea2 New problem done před 5 roky
..
Pangram.fs New problem done před 5 roky
Pangram.fsproj New problem done před 5 roky
PangramTests.fs New problem done před 5 roky
README.md New problem done před 5 roky

README.md

Pangram

Determine if a sentence is a pangram. A pangram (Greek: παν γράμμα, pan gramma, “every letter”) is a sentence using every letter of the alphabet at least once. The best known English pangram is:

The quick brown fox jumps over the lazy dog.

The alphabet used consists of ASCII letters a to z, inclusive, and is case insensitive. Input will not contain non-ASCII symbols.

Running the tests

To run the tests, run the command dotnet test from within the exercise directory.

Autoformatting the code

F# source code can be formatted with the Fantomas tool.

After installing it with dotnet tool restore, run dotnet fantomas . to format code within the current directory.

Further information

For more detailed information about the F# track, including how to get help if you’re having trouble, please visit the exercism.io F# language page.

Source

Wikipedia https://en.wikipedia.org/wiki/Pangram