
This means moving the FATE operations to StringInternal and adding to/from_list (and Char.to/from_int + Char.to_upper/lower).
6 lines
144 B
Plaintext
6 lines
144 B
Plaintext
include "String.aes"
|
|
contract Strings =
|
|
entrypoint str_len(s) = String.length(s)
|
|
entrypoint str_concat(s1, s2) = String.concat(s1, s2)
|
|
|