August 11, 2004
how to convert strings to ints and vice versa?


August 11, 2004
import std.string;

that module has a lot of toString() functions to convert to strings.  it
also has an atoi() function that you can use to convert from a string to an
integer.  :)