vault backup: 2025-02-19 13:25:55

This commit is contained in:
Dane Sabo 2025-02-19 13:25:55 -05:00
parent eb8a6f1498
commit 168c3d99b9

View File

@ -0,0 +1,9 @@
function test()
a = 5;
b = 10;
c = a + b;
disp(c)
% Intentional error: undefined variable
disp(undefinedVar)
end