Skip to content

Commit

Permalink
format forc project
Browse files Browse the repository at this point in the history
  • Loading branch information
Torres-ssf committed Oct 7, 2024
1 parent 60418c0 commit bac6f33
Showing 1 changed file with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
script;

use std::{
string::String,
};

use std::{string::String,};

struct Struct1 {
tag: str[3],
Expand Down Expand Up @@ -113,11 +110,13 @@ fn main() -> bool {
log(STR_4);
assert(TUPLE == (67, true, __to_str_array("hu")));
log(TUPLE);
assert(STRUCT_1 == Struct1 {
tag: __to_str_array("909"),
age: 15,
scores: [9, 2, 1],
});
assert(
STRUCT_1 == Struct1 {
tag: __to_str_array("909"),
age: 15,
scores: [9, 2, 1],
},
);
log(STRUCT_1);

true
Expand Down

0 comments on commit bac6f33

Please sign in to comment.