Update all the examples to work with the spellbook Array class as well.
10 lines
207 B
Rust
10 lines
207 B
Rust
use alchemy::{get_platform_endianess, get_network_endianess};
|
|
|
|
|
|
|
|
pub fn main()
|
|
{
|
|
println!("Platform Endian: {}", get_platform_endianess());
|
|
println!("Network Endian: {}", get_network_endianess());
|
|
}
|