Put + operator inbetween

This commit is contained in:
2022-06-14 23:06:02 +02:00
parent fbbabe115f
commit 799c3fd89c
6 changed files with 45 additions and 38 deletions

View File

@ -1,3 +1,3 @@
const a = 1, b = 2;
! + a b
! a + b
.

View File

@ -1,2 +1,2 @@
! + (+ 3 4) 1
! (3 + 4) + 1
.

View File

@ -1,2 +1,2 @@
! + 1 7
! 1 + 7
.

View File

@ -1,2 +1,2 @@
! + 1 (+ 3 4)
! 1 + (3 + 4)
.