/************************************************************************************ b1.define Value declarations. Should display 2 output text fields, with the hex values "ab", "cd". Check program.print to ensure reprints properly. ************************************************************************************/ define x = 171, y = 205, n = 8; path opd1[ n ], opd2[ n ]; literal( n, x ){ out opd1 }; literal( n, y ){ out opd2 }; { in opd1 }output( "ab", 10, 50, 16, n ); { in opd2 }output( "cd", 10, 100, 16, n );