RosettaCodeData/Task/String-interpolation--included-/PARI-GP/string-interpolation--included--1.pari
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

6 lines
131 B
Text

GEN
string_interpolate(GEN n)
{
pari_printf("The value was: %Ps.\n", n);
GEN s = pari_sprintf("Storing %Ps in a string", n);
}