Skip to content

Commit

Permalink
Merge pull request #1341 from GaijinEntertainment/string_builder
Browse files Browse the repository at this point in the history
no more s\r errors on while and with
  • Loading branch information
borisbat authored Oct 31, 2024
2 parents 5c82b75 + 9cd9e95 commit db4adee
Show file tree
Hide file tree
Showing 4 changed files with 3,138 additions and 3,114 deletions.
10 changes: 10 additions & 0 deletions examples/test/misc/hello_world.das
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,16 @@ def test_for ( i : int ) {
}
}

/////////////
// while loop

[export]
def test_while ( cond : bool ) {
while ( cond ) {
debug(cond);
}
}

/////////
// piping

Expand Down
Loading

0 comments on commit db4adee

Please sign in to comment.