mirror of
				https://github.com/Ed94/LangStudies.git
				synced 2025-10-30 22:40:57 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			146 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			146 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| def square(value)
 | |
| {
 | |
| 	return value * value;
 | |
| }
 | |
| 
 | |
| def empty() { return; }
 | |
| def empty_2() { }
 | |
| 
 | |
| def multi_variable(a, b)
 | |
| {
 | |
| 	return a * b;
 | |
| }
 | |
| 
 | |
| square(2);
 | |
| 
 |