Skip to content

Commit

Permalink
minor: promote test
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-Flash committed Nov 13, 2024
1 parent 512d177 commit c9837e6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
test "hello_lib" {
println(@lib1.hello_from_lib1())
}

pub fn hello() -> String {
"hello from lib"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
test "hello_lib" {
println(@lib1.hello_from_lib1())
println(@lib2.hello_from_lib2())
}
}

pub fn hello() -> String {
"hello from lib"
}

0 comments on commit c9837e6

Please sign in to comment.