fix print

main
Joey Hines 2024-12-11 21:13:30 -07:00
parent abe4958dd9
commit c9e708c5f5
Signed by: joeyahines
GPG Key ID: 38BA6F25C94C9382
1 changed files with 1 additions and 1 deletions

View File

@ -21,6 +21,6 @@ pub fn main() {
use hdr_new <- result.map(primary_hdr.from_bit_array(hdr_bin)) use hdr_new <- result.map(primary_hdr.from_bit_array(hdr_bin))
io.println("Is same: " <> bool.to_string(hdr_new == space_packet_pri_hdr)) io.println("Is Equal? " <> bool.to_string(hdr_new == space_packet_pri_hdr))
io.println("New Header:\n" <> primary_hdr.to_string(hdr_new)) io.println("New Header:\n" <> primary_hdr.to_string(hdr_new))
} }