This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #527 from Jaseci-Labs/comment_format_bug
test: comment file needs fixing
- Loading branch information
Showing
2 changed files
with
18 additions
and
1 deletion.
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
13 changes: 13 additions & 0 deletions
13
jaclang/compiler/passes/tool/tests/fixtures/general_format_checks/comments.jac
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,13 @@ | ||
with entry:__main__ { | ||
app = App(); | ||
app.run(); | ||
# ray.init_window(800, 450, "Hello"); | ||
# while not ray.window_should_close() { | ||
# ray.begin_drawing(); | ||
# ray.clear_background(ray.WHITE); | ||
# ray.draw_text("Hello world", 190, 200, 20, ray.VIOLET); | ||
# ray.end_drawing(); | ||
# } | ||
|
||
# ray.close_window(); | ||
} |