Skip to content

Instantly share code, notes, and snippets.

@funrep
Created August 24, 2013 14:01
Show Gist options
  • Save funrep/6328303 to your computer and use it in GitHub Desktop.
Save funrep/6328303 to your computer and use it in GitHub Desktop.
checkSyntax :: Int -> BFSrc -> BFSrc
checkSyntax b [] = []
checkSyntax b (x@LoopL:xs) = x : checkSyntax (b + 1) xs
checkSyntax b (x@LoopR:xs) = x : checkSyntax (b - 1) xs
checkSyntax b (x:xs) = x : checkSyntax b xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment