14 lines
132 B
Matlab

x = 2;
y = 3;
disp(x + y * y);
disp('Hello world!');
% x = 2 * 3;
% if x > 5
% y = 3;
% else
% y = 10;
% end
%
% disp(y);