Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 338 Bytes

strings.adoc

File metadata and controls

15 lines (10 loc) · 338 Bytes

Strings

A string is an array of bytes that is null-terminated, or ends in zero.

You can create strings on the fly and use them right away with the string keyword.

string("Hello world!")

Strings can also be declared in DAT blocks for reuse, then used with their address.

hellostring byte "Hello world!",0