demo app, long string print

This commit is contained in:
2024-12-21 21:06:02 -06:00
parent cc3d1759a7
commit 738f3da894
3 changed files with 30 additions and 0 deletions

5
demo/src/main.rs Normal file
View File

@@ -0,0 +1,5 @@
static LONG_STRING: &'static str = include_str!(concat!(env!("OUT_DIR"), "/long_string.txt"));
fn main() {
println!("This package was compiled at {}", LONG_STRING);
}