Extending the Standard Library
import "https://frost-lang.deno.dev/std/string.ff"main: never -> int = {
message: *byte = "Hello, Frost!"
length: int = strlen(message)
printf("Length of message: %d\n" length)
0
}Extending the Standard Library
Last updated