Put + operator inbetween
This commit is contained in:
@ -1,3 +1,3 @@
|
||||
const a = 1, b = 2;
|
||||
! + a b
|
||||
! a + b
|
||||
.
|
||||
|
@ -1,2 +1,2 @@
|
||||
! + (+ 3 4) 1
|
||||
! (3 + 4) + 1
|
||||
.
|
||||
|
@ -1,2 +1,2 @@
|
||||
! + 1 7
|
||||
! 1 + 7
|
||||
.
|
||||
|
@ -1,2 +1,2 @@
|
||||
! + 1 (+ 3 4)
|
||||
! 1 + (3 + 4)
|
||||
.
|
||||
|
Reference in New Issue
Block a user