Skip to content

Instantly share code, notes, and snippets.

View jakerieger's full-sized avatar
🎯
Focusing

Jake Rieger jakerieger

🎯
Focusing
  • Cleveland, OH
View GitHub Profile
@jakerieger
jakerieger / Haskell Cheatsheet.hs
Last active February 1, 2025 07:34
A cheat sheet for the Haskell programming language. Roughly commented.
import Data.List
import System.IO
-- Int: -2^63 to 2^63
minInt = minBound :: Int
maxInt = maxBound :: Int
-- Integer: no range
-- Double: up to 11 points of precision