Skip to content

Commit

Permalink
Simple modification of branch
Browse files Browse the repository at this point in the history
  • Loading branch information
kreofil committed Jun 24, 2022
1 parent 9ba6dc5 commit df2cc1f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
Empty file modified project/scripts/clang_tidy.py
100644 → 100755
Empty file.
Empty file modified project/scripts/compile.py
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,16 @@ int f5 (fptr5 fp, fptr1 i)
return fp(i);
}
int f8 (int ([4]), int);
int main () { return 0; }
// int main () { return 0; }

int test() {
int x;
x =
}

int main () {
int x;
x = test();
printf("%d\n", x);
return 0;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ int x;

int test();

void *
foo()
{
return &main;
}

int
test()
{
Expand All @@ -26,4 +20,11 @@ int main () {
x = test();
printf("%d\n", x);
return 0;
}
}

void *
foo()
{
return &main;
}

2 changes: 1 addition & 1 deletion result/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

java -cp target/classes:target/eo-runtime.jar org.eolang.Main c2eo.src.switch.switch.global "$@"
java -cp target/classes:target/eo-runtime.jar org.eolang.Main c2eo.src.good_101_220.00101.00101.global "$@"

0 comments on commit df2cc1f

Please sign in to comment.