diff options
author | Tim Hatch <tim@timhatch.com> | 2014-04-24 11:38:52 -0400 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2014-04-24 11:38:52 -0400 |
commit | 4330942e358d466ec6516e4114865ec6ca641c48 (patch) | |
tree | 522d4de78d70f6acf59f1118c1512fd5649b1aa6 /tests/examplefiles/qbasic_example | |
parent | d1e781ec268ad6d1b3af570412245af4e8608770 (diff) | |
download | pygments-4330942e358d466ec6516e4114865ec6ca641c48.tar.gz |
Let qbasic lexer match functions like 'RIGHT$', with test
Diffstat (limited to 'tests/examplefiles/qbasic_example')
-rw-r--r-- | tests/examplefiles/qbasic_example | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/examplefiles/qbasic_example b/tests/examplefiles/qbasic_example index a5055175..27041af6 100644 --- a/tests/examplefiles/qbasic_example +++ b/tests/examplefiles/qbasic_example @@ -1,2 +1,2 @@ -10 print "hi" +10 print RIGHT$("hi there", 5) 20 goto 10 |