Skip to content

Commit a9308cb

Browse files
committed
fixup! Fix one parser test
1 parent d44a250 commit a9308cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/parser/input_1.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ A = zeros(5); # 3x3 matrix filled with zeros
22
B = ones(5); # 3x3 matrix filled with ones
33
C = eye(5); # 3x3 diagonal matrix filled with ones
44
D = A.+B; # add element-wise
5-
E -= A.-B; # substract element-wise
6-
F *= A.*B; # multiply element-wise
7-
G /= A./B; # divide element-wise
5+
E = A.-B; # substract element-wise
6+
F = A.*B; # multiply element-wise
7+
G = A./B; # divide element-wise
88

99
H = [ [ 1, 2, 3], [ 4, 5, 6], [ 7, 8, 9] ];
1010

0 commit comments

Comments
 (0)