Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
littlewhitecloud authored Dec 16, 2023
1 parent 3ae71b6 commit 9c3cd1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/syntax_error/missing_end_quote_in_string.jou
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "stdlib/io.jou"

# Output: compiler error in file "tests/syntax_errorr/missing_end_quote_in_string.jou", line 5: missing " to end the string
# Output: compiler error in file "tests/syntax_error/missing_end_quote_in_string.jou", line 5: missing " to end the string
def main() -> int:
printf("Hello)
return 0
2 changes: 1 addition & 1 deletion tests/syntax_error/string_continue_on_next_line.jou
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "stdlib/io.jou"

# Output: compiler error in file "string_continue_on_next_line.jou", line 4: missing ' to end the byte literal
# Output: compiler error in file "tests/syntax_error/string_continue_on_next_line.jou", line 4: missing ' to end the byte literal
def main() -> int:
a = '\
't\''
Expand Down

0 comments on commit 9c3cd1f

Please sign in to comment.