Skip to content

Instantly share code, notes, and snippets.

@gallais
Created December 16, 2014 18:06
Show Gist options
  • Save gallais/340fb849a5a0427d0a00 to your computer and use it in GitHub Desktop.
Save gallais/340fb849a5a0427d0a00 to your computer and use it in GitHub Desktop.
Fun with low-level Haskell
{-# LANGUAGE MagicHash #-}
module Word8Mod where
import GHC.Prim
import GHC.Word
f :: Word8 -> Word8 -> Word8
f (W8# x#) (W8# y#) =
let z# = plusWord# x# y#
in W8# (remWord# z# (int2Word# 255#))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment