undar-lang/test/str.ul

8 lines
136 B
Plaintext
Executable File

str msg = " damage inflicted!\n"
nat AT = 14;
nat accuracy = 150;
nat dmg = ((AT * accuracy) / 20) - 3;
print(dmg as str);
print(msg);