Guest User

Untitled

a guest
Mar 10th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Oz 0.32 KB | None | 0 0
  1. declare
  2. fun {SimpleJack String Temp FinalList CurrState}
  3.    case String
  4.    of nil then nil
  5.    [] H|T then
  6.       case CurrState
  7.       of 0 then %dealing with numbers
  8.      
  9.       [] 1 then %dealing with letters
  10.       end
  11.    end
  12. end
  13.  
  14. local Tokens in
  15.    {SimpleJack "abcd1234fdsa5438" nil Tokens}
  16.    {Browse Tokens}
  17. end
Add Comment
Please, Sign In to add comment