Post Reply 
Files with multiple functions and recalls between files/Archivos con múltiples fun...
02-11-2014, 06:35 PM (This post was last modified: 02-11-2014 06:36 PM by compsystems.)
Post: #3
Files with multiple functions and recalls between files/Archivos con múltiples fun...
Now, with calls to functions CAS type
Ahora con llamadas a funciones tipo CAS

my_dir2.funcion1( valor_f2 );
function1_CAS( valor_f2 );


CAS FILE
Code:

function1_CAS( valor_Cf1) :=
 begin
    print("función1_CAS: ");
    print("valor*10="+(valor_Cf1*10));
     function2_CAS( valor_Cf1)
 end;
 
 function2_CAS( valor_Cf2) :=
 begin
    print("función2_CAS: ");
    print("valor*20="+(valor_Cf2*20));   
 end;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Files with multiple functions and recalls between files/Archivos con múltiples fun... - compsystems - 02-11-2014 06:35 PM



User(s) browsing this thread: 1 Guest(s)