ethos/tests/string.ethlang
sfja 696bfc55f4
All checks were successful
Check / Explore-Gitea-Actions (push) Successful in 13s
remove str
2026-04-13 12:33:43 +02:00

15 lines
240 B
Rust

fn main()
{
let my_string: *[u8] = "hello world";
// expect: hello world
print(my_string);
// expect: 104
print(my_string.*[0]);
// expect: 11
print(len(my_string));
}
// vim: syntax=rust commentstring=//\ %s