-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix output serialization for cairo 1 (#1645)
* Revert "Add cairo1-run pretty printing (#1630)" This reverts commit 061ba87. * First iteration progress * Copy tests from reverted PR * Fix expected test value * Format fixes + add continue * Fmt + better commentary * Update test file * Update commentary * Add test for reported bug * Update Changelog * Fix * Dereference references upon output serialization + Add test * Add comment to serialize_output function * Expand CHANGELOG description with new behaviour * fmt * Use doc commnt
- Loading branch information
Showing
5 changed files
with
173 additions
and
178 deletions.
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
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
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
use core::array::ArrayTrait; | ||
|
||
|
||
fn main() -> (Array<u32>, u32) { | ||
let mut numbers = ArrayTrait::new(); | ||
numbers.append(1); | ||
|
||
(numbers, 1) | ||
} |
Oops, something went wrong.