Created
February 5, 2025 05:57
-
-
Save anataliocs/bc7fb4a4c636b6e61fd8710691b804d7 to your computer and use it in GitHub Desktop.
osstring rust
This file contains hidden or 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
use std::ffi::{OsStr, OsString}; | |
let as_ref1: OsString = OsString::from(OsString::from("stellar contract build")); | |
assert_eq!("stellar contract build", as_ref1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment