Skip to content

Commit 2e5f81d

Browse files
committed
Add executing permissions to your_shell.sh
1 parent 56c9c66 commit 2e5f81d

File tree

7 files changed

+6
-11
lines changed

7 files changed

+6
-11
lines changed

compiled_starters/c/app/main.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#include <stdio.h>
22

33
int main() {
4-
// You can use print statements as follows for debugging, they'll be visible
5-
// when running tests
4+
// You can use print statements as follows for debugging, they'll be visible when running tests
65
printf("Logs from your program will appear here!\n");
76

87
// Uncomment this block to pass the first stage

compiled_starters/c/your_shell.sh

100644100755
File mode changed.

solutions/c/01-oo8/code/app/main.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#include <stdio.h>
22

33
int main() {
4-
printf("Logs from your program will appear here!\n");
5-
64
printf("$ ");
75
fflush(stdout);
86

solutions/c/01-oo8/code/your_shell.sh

100644100755
File mode changed.

solutions/c/01-oo8/diff/app/main.c.diff

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
@@ -1,16 +1,13 @@
1+
@@ -1,15 +1,11 @@
22
#include <stdio.h>
33

44
int main() {
5-
- // You can use print statements as follows for debugging, they'll be visible
6-
- // when running tests
7-
printf("Logs from your program will appear here!\n");
8-
5+
- // You can use print statements as follows for debugging, they'll be visible when running tests
6+
- printf("Logs from your program will appear here!\n");
7+
-
98
- // Uncomment this block to pass the first stage
109
- // printf("$ ");
1110
- // fflush(stdout);

starter_templates/c/app/main.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#include <stdio.h>
22

33
int main() {
4-
// You can use print statements as follows for debugging, they'll be visible
5-
// when running tests
4+
// You can use print statements as follows for debugging, they'll be visible when running tests
65
printf("Logs from your program will appear here!\n");
76

87
// Uncomment this block to pass the first stage

starter_templates/c/your_shell.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)