Skip to content

Instantly share code, notes, and snippets.

@jabberabbe
Created October 4, 2021 20:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jabberabbe/8232002cb9ddc7d7a4a404a2c3939b48 to your computer and use it in GitHub Desktop.
Save jabberabbe/8232002cb9ddc7d7a4a404a2c3939b48 to your computer and use it in GitHub Desktop.
tito fighting against the Haskell lexer
module Coso where
testOk1 = [1, 2, 3, 4]
testOk2 =
[ 1
, 2
, 3
]
testOk3 = [ 1, 2
, 3 ]
testOk4 = do
let l = [1, 2, 3, 4]
pure l
testOk5 = do
pure l
where
l = [1, 2,
3, 4]
testOk6 = do
pure l
where
l =
[1, 2, 3, 4]
testSux1 = do
let l =
[1, 2, 3, 4]
pure l
testSux2 = do
let l = [1, 2,
3, 4]
pure l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment