add support for character literals using single quotes
This commit is contained in:
+2
-2
@@ -11,7 +11,7 @@
|
||||
(cmp r1 1 (ne? (fault)))
|
||||
|
||||
; test reverse push
|
||||
(push @r0 1)
|
||||
(push @r0 '🐈')
|
||||
(push @r0 7)
|
||||
(rpush @r0 8)
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
(cmp r1 7 (ne? (fault)))
|
||||
|
||||
(pop r1 @r0)
|
||||
(cmp r1 1 (ne? (fault)))
|
||||
(cmp r1 '🐈' (ne? (fault)))
|
||||
|
||||
(pop r1 @r0)
|
||||
(cmp r1 8 (ne? (fault)))
|
||||
|
||||
Reference in New Issue
Block a user