Advertisement
T-D-K

Untitled

Dec 31st, 2018
1,233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 0.33 KB | None | 0 0
  1.     let rec private processToken (token : Token) (context : BuilderContext) (nextTokens :Token list) =
  2.         //do smth
  3.         processNextToken nextTokens newContext
  4.  
  5.     and private processNextToken (tokens : Token list) (context : BuilderContext) =
  6.         match tokens with
  7.           | [] -> ()
  8.           | h::t -> processToken h context t
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement