#!/bin/bash # Go Build Script SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)" cd "$SCRIPT_DIR" echo "=== Go Build ===" echo "" # Kompilera Go-programmet cd src go build -o ../bin/print_hej print_hej.go if [ $? -eq 0 ]; then echo "✓ Kompilering lyckades!" echo "Binär: bin/print_hej" echo "" echo "För att köra:" echo " ./bin/print_hej [decimaler]" else echo "✗ Kompilering misslyckades!" exit 1 fi