crosslang/corpus/06_if_else.m
Maximus Gorog db79eb3fde Initial commit: Lean 4 reimplementation of GNU Octave
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-29 09:40:46 -06:00

6 lines
55 B
Matlab

n = 7;
if n > 5
disp("big")
else
disp("small")
end