---input---
 function myfunc(s)
     a = 1;
 end

---tokens---
' '           Text.Whitespace
'function'    Keyword
' '           Text.Whitespace
'myfunc'      Name.Function
'('           Punctuation
's'           Text
')'           Punctuation
'\n     '     Text.Whitespace
'a'           Name
' '           Text.Whitespace
'='           Punctuation
' '           Text.Whitespace
'1'           Literal.Number.Integer
';'           Punctuation
'\n '         Text.Whitespace
'end'         Keyword
'\n'          Text.Whitespace
