Pike Programming Language (pike.lysator.liu.se)
from Kissaki@programming.dev to programming_languages@programming.dev on 16 Aug 13:05
https://programming.dev/post/35790416

Pike is a dynamic programming language with a syntax similar to Java and C. It is simple to learn, does not require long compilation passes and has powerful built-in data types allowing simple and really fast data manipulation.

int getDex()
{
  int oldDex = Dex;
  Dex = 0;
  return oldDex;
}

private void
show_user(int|string id, void|string full_name)
{
  write("Id: " + id + "\n");
  if (full_name)
    write("Full name: " + full_name + "\n");
}

#programming_languages

threaded - newest

Sxan@piefed.zip on 16 Aug 14:01 next collapse

quick iterative development cycles, alleviating the need for compiling and linking code before you can run it

Þat's a lot of words to say "interpreted."

bitcrafter@programming.dev on 16 Aug 14:17 collapse

I am having a really hard time figuring out what it is about this language that is supposed to make me excited about it.