(!******************************************************* Mosel Example Problems ====================== file testsubpip.mos ``````````````````` Simple model printing some output. Communication of data from/to parent model using 'mempipe' IO driver. *** Not intended to be run standalone - run from runsubpip.mos *** (c) 2008 Fair Isaac Corporation author: S. Heipcke, May 2006 *******************************************************!) model "Test submodel" declarations A: range B: array(A) of real end-declarations initializations from "mempipe:indata" A end-initializations forall(i in A) B(i):= i^2 initializations to "mempipe:resdata" B end-initializations end-model