{-# LANGUAGE NoBinaryLiterals #-}
module TFindLiteralIntPattern where

patternMatchingFunction 1 = "one"
patternMatchingFunction 2 = "two"
patternMatchingFunction _ = "the rest of the numbers"