ethos/tests/string.ethlang
sfja 4f9ea23d84
All checks were successful
Check / Explore-Gitea-Actions (push) Successful in 8s
add strings
2026-03-17 20:24:15 +01:00

15 lines
239 B
Rust

fn main()
{
let my_string: *str = "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