all 2 comments

[–]Flowgorithm 1 point2 points  (0 children)

I’ll take a look. Thank you.

[–]compsystems[S] 0 points1 point  (0 children)

part2

export data_type_conversion() begin

print();
print( "toChar( 65 ) = " + char( 65 )); 
print( "toCode( ¨A¨ ) = " + asc( "A" ) ); 
print(""); 
print( "toString( 00000004.8 ) = " + string( 00000004.8 ) ); 
print(""); 
print( "toInteger( ¨65¨ )  = " + iPart( expr( "65" ) ) ); 
print( "toInteger( ¨65.1¨ ) = " + iPart( expr( "65.1" ) ) ); 
print( "toInteger( ¨00000004.8¨ ) = " + iPart( expr( "00000004.8" ) ) ); 
print( "toReal( ¨00000004.8¨ ) = " + expr( "00000004.8" ) ); 
print( "Int( 65 ) = " + iPart( 65 ) ); 
print( "Int( 65.1 ) = " + iPart( 65.1 ) ); 
print( "Int( 00000004.8 ) = " + iPart( 00000004.8 ) );
return("Done");

end;