lang0/tests/stdlibaddstringchar.lang0
Johan B.W. de Vries 5fa042c5cd Adds check builtin
2025-02-09 15:02:25 +01:00

7 lines
137 B
Plaintext

main:
declare result
calc result addstringchar "abc" "d"
check eq result "abcd" : "Adding abc and d should be abcd"
emit "Success"
/