From d78a020add89fd2a5f541c34dab90dba2167010c Mon Sep 17 00:00:00 2001 From: Erlan Rangel Date: Wed, 20 Aug 2025 15:40:31 -0600 Subject: [PATCH] fix: main template formatting - Remove trailing spaces from the template for the main function --- internal/templates/main.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/templates/main.tmpl b/internal/templates/main.tmpl index 0849651..4f35340 100644 --- a/internal/templates/main.tmpl +++ b/internal/templates/main.tmpl @@ -3,7 +3,7 @@ {{ else -}} #include {{ end }} -int main (int argc, char *argv[]) +int main(int argc, char *argv[]) { {{- if eq .Language "cpp" }} std::cout << "Hello World" << std::endl;