All translations
Jump to navigation
Jump to search
Enter a message name below to show all available translations.
Found 2 translations.
Name | Current message text |
---|---|
h Czech (cs) | == První program v jazyce Haskell == Ve vašem oblíbeném prostředí (standardně VS Code): * Vytvořte soubor <code>simple.hs</code>. * Vytvořte funkci <code>pythagoras a b</code> která počítá <code>c</code> na základě vztahu <math>c^2 = a^2 + b^2 \,,</math>. Potřebné funkce mohou být nalezeny v: [https://hoogle.haskell.org/ Hoogle] * Otevřete <code>ghci</code> a spusťte vytvořenou funkci se vstupem <code>3 4</code>. Soubor může být nahrán příkazem <code>:l</code> (<code>:load</code>) a obnoven příkazem <code>:r</code> (<code>:reload</code>). |
h English (en) | == First program in Haskell == In your favorite development environment (VS Code by default): * Crate a file <code>simple.hs</code>. * Create a function <code>pythagoras a b</code> that computes <code>c</code> based on <math>c^2 = a^2 + b^2 \,,</math>. Necessary functions can be found: [https://hoogle.haskell.org/ Hoogle] * Open <code>ghci</code> and run the implemented function with <code>3 4</code>. File can be loaded using command <code>:l</code> (<code>:load</code>) and reloaded with <code>:r</code> (<code>:reload</code>). |