Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active February 4, 2021 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/ce7d2dd46a32b53eacff955a8cdf0276 to your computer and use it in GitHub Desktop.
Save parzibyte/ce7d2dd46a32b53eacff955a8cdf0276 to your computer and use it in GitHub Desktop.
GO=go
GOFMT=gofmt
OUTPUT_FILE=programa.exe
.DEFAULT_GOAL=run
run:
# Formateando
${GOFMT} -w .
# Compilando
${GO} build -o ${OUTPUT_FILE}
# Ejecutando
${OUTPUT_FILE}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment