Some checks are pending
Lean Action CI / build (push) Waiting to run
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
5 lines
73 B
Matlab
5 lines
73 B
Matlab
function y = square(x)
|
|
y = x * x;
|
|
end
|
|
disp(square(6))
|
|
disp(square(11))
|