From 287613e6cf8ab7d304cd5c3dfe5f56e2624cfa5a Mon Sep 17 00:00:00 2001 From: Nick <160781135+Nicolau-369@users.noreply.github.com> Date: Wed, 15 Jan 2025 14:05:37 -0300 Subject: [PATCH] Update Hello-Word.c --- Hello-Word.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Hello-Word.c b/Hello-Word.c index dda6aa9..e3e3d16 100644 --- a/Hello-Word.c +++ b/Hello-Word.c @@ -2,12 +2,12 @@ #include int main() { /* - A função printf() - serve para - escrever na tela + The printf() function + is used to + write to the screen */ printf("Hello word \n"); - //faz uma pausa no programa + // pause the program system("pause"); return 0; }