summaryrefslogtreecommitdiff
path: root/1322/CH5/EX5.11/49ex1.sce
blob: d815b84ed50dd2ca944eeec5b7d005d955d2f54b (plain)
1
2
3
4
5
6
7
8
9
10

clear;
clc;
close;
for x=1:10
  if(5*x-7==8)
    mprintf("the value of x is %i\n",x)
    break
  end
end