Skip to content

Instantly share code, notes, and snippets.

@gregoryyoung
Created April 30, 2015 20:18
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 gregoryyoung/3d8f8bac50689b6f0380 to your computer and use it in GitHub Desktop.
Save gregoryyoung/3d8f8bac50689b6f0380 to your computer and use it in GitHub Desktop.
huh
let name = Something.Data.Methods
|> Seq.filter (fun x-> x.C > 0UL)
|> Seq.sortBy (fun x-> 999999999999UL - x.C)
|> Seq.take 50
|> Seq.iter dump_minfo
@gregoryyoung
Copy link
Author

/Users/greg/Code/redacted/fsharp/redacted.fsx(16,7): error FS0010: Unexpected infix operator in binding. Expected incomplete structured construct at or before this point or other token

@forki
Copy link

forki commented Apr 30, 2015

I know it's "redacted" but the error message is not aligned. do you have a smaller repo that I copy in VS?

@forki
Copy link

forki commented Apr 30, 2015

Something.Data.Methods on line 2 fixes it (Indentation issue)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment