Skip to content

Commit

Permalink
Change files to use LF line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
littlewhitecloud authored and github-actions[bot] committed Dec 10, 2023
1 parent 2cf5a74 commit 829d9d3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions tests/syntax_error/missing_end_quote_in_byte.jou
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "stdlib/io.jou"

def main() -> int:
printf('?)
# Error: missing ' to end the byte literal
import "stdlib/io.jou"

def main() -> int:
printf('?)
# Error: missing ' to end the byte literal
return 0
10 changes: 5 additions & 5 deletions 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"

def main() -> int:
printf("Hello)
# Error: missing " to end the string
import "stdlib/io.jou"

def main() -> int:
printf("Hello)
# Error: missing " to end the string
return 0
14 changes: 7 additions & 7 deletions tests/syntax_error/string_continue_on_next_line.jou
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "stdlib/io.jou"

def main() -> int:
a = '\
't\''
printf(a)
return 0
import "stdlib/io.jou"

def main() -> int:
a = '\
't\''
printf(a)
return 0

0 comments on commit 829d9d3

Please sign in to comment.