Difference between revisions of "Functional programming"

From Marek Běhálek Wiki
Jump to navigation Jump to search
Line 32: Line 32:
 
#* Use default paths. Installer adds to system variable <code>PATH</code> a path to executable <code>stack.exe</code>.
 
#* Use default paths. Installer adds to system variable <code>PATH</code> a path to executable <code>stack.exe</code>.
 
# Download and install VS Code [https://code.visualstudio.com/#alt-downloads https://code.visualstudio.com/#alt-downloads]
 
# Download and install VS Code [https://code.visualstudio.com/#alt-downloads https://code.visualstudio.com/#alt-downloads]
# Open <code>cmd</code> and type:<pre class="bash">dsf</pre>
+
# Open file <code>c:\sr\config.yaml</code> and add a line <pre>system-ghc : true</pre>
 +
# Open <code>cmd</code> and type:<pre class="bash">stack install intero --system-ghc</pre>
 +
#* Attribute <code>--system-ghc</code> is optional and redundant to previous step (it is the same setting, but global).
 +
# Open <code>cmd</code> and type:<pre class="bash">stack install phoityne-vscode haskell-dap --system-ghc</pre>
 +
# Open VS Code and install extensions:
 +
#* Haskero
 +
#* Haskell GHCi Debug Adapter Phoityne
  
 
=== Installation guide Windows (all users) ===
 
=== Installation guide Windows (all users) ===

Revision as of 12:19, 9 August 2019

Basic introduction

The course introduces the functional style of programming. It covers basic properties of the functional programming like: the side effect-free programming, functions as first-class values, high-order functions, recursion, pattern matching, or function closures. Also, course introduces selected data structures like a list and a tree and a functional style of working with these structures. As a programming language, Haskell will be used. It is a pure functional, statically typed, lazy evaluated language.

Subject aims expressed by acquired skills and competences

The basic outcome of this course will be the ability to write simple algorithms using a functional style of programming. More precisely, students will understand recursion and recursive data structures, they will be able to use high-order functions, and they will be able to define functions using the pattern matching. They will be able to use functional encapsulation mechanisms such as closures and modular interfaces and correctly reason about variables and lexical scope in programs. On practical level, they will be able to write these basic algorithms in programming language Haskell. Moreover, they will be able to recognize functional style of programming, they will understand advantages and disadvantages of this style of programming and they will be able to compare this style of programming with other approaches like imperative or object-oriented programming.

Recommended literature

  • Lipovaca M.:Learn You a Haskell for Great Good!: A Beginner's Guide (1st ed.). No Starch Press, San Francisco, CA, USA, 2011 - for free at: http://learnyouahaskell.com/
  • Thompson S.: The Haskell: The Craft of Functional Programming (3nd ed.). Addison-Wesley Professional, October 2, 2011, ISBN-10: 0201882957.

Way of continuous check of knowledge in the course of semester

During the exercises, students will be programming assigned tasks. The results of these tasks will be the crucial part of the final evaluation. Additionally, two smaller projects will be given.

Software

In our lectures, we will be using Haskell Platform with Visual Studio Code. For VS Code, we will be using two extensions:

Installation guide Windows (single user)

  1. Download and install Haskell platform from https://www.haskell.org/platform/windows.html
    • Use default paths. Installer adds to system variable PATH a path to executable stack.exe.
  2. Download and install VS Code https://code.visualstudio.com/#alt-downloads
  3. Open file c:\sr\config.yaml and add a line
    system-ghc : true
  4. Open cmd and type:
    stack install intero --system-ghc
    • Attribute --system-ghc is optional and redundant to previous step (it is the same setting, but global).
  5. Open cmd and type:
    stack install phoityne-vscode haskell-dap --system-ghc
  6. Open VS Code and install extensions:
    • Haskero
    • Haskell GHCi Debug Adapter Phoityne

Installation guide Windows (all users)

Presentations

Presentations #presentations #top

Laboratories