Goal: weight in kilograms
 Focus: kilos := 0.453592 * pounds
 Data flow:

 
 Code:

class X

creation
             make

feature
             Factor: REAL is 0.453592
             pounds, kilos: REAL

             make is
                               -- read a weight in pounds, display it in kilograms
                      do

                      end -- make

            end -- class X