Pike - Hello You Program


Home

Author: Tim Heaney
Date: August 12, 2004
Info: Pike Home
#!/usr/local/bin/pike

int main()
{
  write("What is your name? ");
  string name = Stdio.stdin->gets();
  write("Hello " + name + ", how are you?\n");
  return 0;
}

Home