7 lines
		
	
	
		
			116 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			116 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| year=$1
 | |
| day=$2
 | |
| 
 | |
| rustc -o $year/$day/problem $year/$day/problem.rs && time ./$year/$day/problem
 |