mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			190 B
		
	
	
	
		
			Matlab
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			190 B
		
	
	
	
		
			Matlab
		
	
	
	
	
	
| function ret = matlab_function(A,B)
 | |
| % Simple function adding two values and displaying the return value
 | |
| 
 | |
| ret = A+B;
 | |
| % Display the return value
 | |
| disp('Return value in function');
 | |
| disp(ret);
 | |
| 
 | |
| 
 |