Skip to content

Commit

Permalink
updating libs
Browse files Browse the repository at this point in the history
  • Loading branch information
objeck committed Feb 26, 2024
1 parent da2dedd commit e368bdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/compiler/lib_src/lang.obs
Original file line number Diff line number Diff line change
Expand Up @@ -4111,7 +4111,7 @@ bundle System {
method : public : ToByteArray() ~ Byte[] {
out := Byte->New[@buffer->Size()];

each(i : str) {
each(i : @buffer) {
out[i] := @buffer[i];
};

Expand Down Expand Up @@ -4374,7 +4374,7 @@ each(i : cities) {
out := Byte->New[bytes->Size()];

each(i : bytes) {
out[i] := bytes->Get(i);
out[i] := bytes[i];
};

return out;
Expand Down
Binary file modified core/lib/lang.obl
Binary file not shown.

0 comments on commit e368bdf

Please sign in to comment.