Problem or feature statement
Currently Larky does not support string formatting with padding characters. For example, "%02x" % 3 should return "03".
Advised solution
Implement more advanced pythonic string formatting features in Larky.
Testing scenarios
"%02x" % 3 == "03"
"%03x" % 3 == "003"
"%04x" % 3 == "0003"
"%2s" % 3 == " 3"
"%010d" % 3 == "0000000003"