/tutorial/ace/example3.ace
Unknown | 40 lines | 27 code | 13 blank | 0 comment | 0 complexity | 2749428e0a7ac3964c2b84d358bbbf4e MD5 | raw file
1-- To launch the compilation with this file, just type: 2-- 3-- compile example3.ace 4-- 5-- In this example, only one class (the root class) is traced by the Liberty 6-- Eiffel debugger. 7-- 8system 9 -- Because this is also the second example of tutorial/number 10 "number2" 11 12root 13 14 EXAMPLE2: make 15 16default 17 18 verbose (no); 19 -- Yes is the equivalent of the -verbose flag 20 21 assertion (no); 22 23 trace (no); 24 25 debug (no); 26 27cluster 28 29 "${path_tutorial}/number" 30 default 31 trace (yes) 32 end 33 34 "${path_liberty_core}/loadpath.se" 35 36external 37 38generate 39 40end