Pike – a dynamic programming language with a syntax similar to Java and C
pike.lysator.liu.se
Pike – a dynamic programming language with a syntax similar to Java and C
1–10 of 75 posts
Re: Pike – a dynamic programming language with a syntax similar to Java and C
#2Re: Pike – a dynamic programming language with a syntax similar to Java and C
#3Re: Pike – a dynamic programming language with a syntax similar to Java and C
#4Taking the worst aspect of statically typed languages and mixing it with the worst part of dynamic schemes. I'll keep my Ruby, thanks.
Re: Pike – a dynamic programming language with a syntax similar to Java and C
#5Also, is it only an interpreted language or can I compile it too if I want?
Is it like Ruby in the sense that I have to share the whole runtime with the ruby script or can I somehow share a standalone cross-platform executable?
I’ll be honest, the design decision at first hand sight did not look that exciting
string name = Stdio.stdin->gets();
Re: Pike – a dynamic programming language with a syntax similar to Java and C
#6What's the itch this language is trying to scratch? For which use cases is it best suited?
Re: Pike – a dynamic programming language with a syntax similar to Java and C
#7It is understandable though, considering this language is 30+ years old. Probably not the decision you would make if you were to design it today: Switch statement with labels+fallthrough instead of a switch/match expression (even Java replaced that one with a switch expression nowadays), ?: ternary operator instead of if expression (the Pike docs even call that one ugly and recommend not using it)...
Re: Pike – a dynamic programming language with a syntax similar to Java and C
#8And today I still can't.
Legacy projects?
Re: Pike – a dynamic programming language with a syntax similar to Java and C
#9https://pike.lysator.liu.se/docs/tut/introduction/first_glan...
(saving you some clicks...)