mirror of
				https://github.com/roc-lang/roc.git
				synced 2025-10-30 12:46:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			183 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			183 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| # https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
 | |
| set -euxo pipefail
 | |
| 
 | |
| zig build-exe benchmark/dec.zig -O ReleaseFast --main-pkg-path .
 | |
| ./dec
 | 
