- Galois according to Haskell in Industry wiki page
- TypLAB according to Haskell in Industry wiki page
- Tupil according to their 'Building Commercial Haskell Applications'
- Silk App according to @old_sound
- Bump according to their developer blog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- haskell plasma attempt | |
-- compile with: ghc plasma.hs | |
-- run: plasma 80 50 | |
import Control.Concurrent (forkIO, threadDelay) | |
import System.Environment | |
import System.Exit (exitSuccess) | |
coordValue :: Float -> Float -> Float -> Float | |
coordValue x y t = |