1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
@import("basic.felan"); main :: () -> void { // print_formatted("hello"); str := string_from("Hey"); print(str); print_char('\n'); _grow_if_needed(&str,23u64); // append(&str,"\nHello"); print(str); delete(str); };