PyHP_pph
PyHP_pph copied to clipboard
This repository serves as a centre for collaboration on the PyHP++# language. It will also include a functioning interpreter and compiler for PyHP++# once the standard is finalised.
We need something like PEP8 (when the specs are done, of course). I'd suggest basing it on [this](https://github.com/Droogans/unmaintainable-code).
This kinda died. Should we revive it?
Arrays
How will arrays be done? Will it be like PHP and Python where you just do []? Will it be like C where you put [size]? Will it be like...
Will we leave garbage collection up to the programmer, such as in C(++) or should we implement garbage collection under the hood, such as in Python and in PHP?
With the proposal of #44, I propose that we have a built in package manager to the likes of how Node.JS comes prepackaged with NPM. It can be a mix...
In [boolean.md](https://github.com/PyHP-pph/PyHP_pph/blob/master/spec/boolean.md) it is explicitly stated that the boolean type is named `boolean`. Clearly this is a problem, formal language dictates we capitalize the first letter of proper nouns and...
For example, JavaScript has both `null` and `undefined` to express an absence of a value. PyHP++# should have multiple ways of expressing a lack of value, each with its own...
It would be great to have a README about how we want to implement the CIC. In the #7 issue we talked everybody can use the own language, like python,...
Modules
We should have a module system, so programmers can use libraries. I propose using a mixture of Python's and C++'s approaches: From Python: ```pyph_pph import MyMath; MyMath.MySin(MyMath.MyPi); ``` And from...
Do we do it similar to how we're doing output? i.e. ```pyph_pph Console.StandardInputStream