Guest User

Untitled

a guest
Mar 10th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Oz 0.34 KB | None | 0 0
  1. declare
  2. fun {start StringToTokenize CurrentState}
  3.     case StringToTokenize
  4.     of nil then nil
  5.     [] H|T then
  6.         case CurrentState
  7.         of 'char' then
  8.             // push char on layer2
  9.             {recurse and if statechange push layer2 to layer3}
  10.         [] 'int' then
  11.             // push to layer2
  12.             {recurse and if statechange push layer2 to layer3}
  13.        
  14.         end
  15.     end
  16. end
Add Comment
Please, Sign In to add comment