-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,5 +23,7 @@ jobs: | |
- run: cp -r target/eo-after/. gh-pages | ||
- uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
branch: gh-pages | ||
folder: gh-pages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[] > catch_error_in_goto | ||
try > @ | ||
[] | ||
goto > @ | ||
[g] | ||
if. > @ | ||
TRUE | ||
g.forward | ||
div. | ||
42 | ||
0 | ||
"never happened" | ||
[e] | ||
seq > @ | ||
QQ.io.stdout e | ||
eq. | ||
e | ||
"The 1th argument of 'int.div' is invalid: division by zero is infinity" | ||
nop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[] > goto_inside_nop | ||
nop > @ | ||
goto | ||
[g] | ||
seq > @ | ||
QQ.io.stdout "Never happened\n" | ||
g.forward TRUE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[] > goto_inside_try | ||
try > @ | ||
[] | ||
goto > @ | ||
[g] | ||
if. > @ | ||
TRUE | ||
g.forward TRUE | ||
"never happened" | ||
[e] | ||
e > @ | ||
nop |