boyned//Kampfkarren
boyned//Kampfkarren
I'm making a GMod gamemode centered all around hats (no it's not TF2), and I was wondering if it'd be possible to only have the hats, no shop.
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...
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...
Is there just a basic `number` type? Is it like C(++) with `long`, `double`, `int`, etc? Is there `signed` and `unsigned`? Can you add "f" to the end of a...
We can take the C/C++ approach with either `(type)value` or `type(value)` or the PHP-esque route of adding functions to the global namespace, such as `to_boolean(value)`, `to_int(value)`, etc.
I've noticed a large lack of C#-esque features in PyHP++#. Is OOP the place for C# to have its' time to shine?
Options: - Python 2/PHP style: `print "text";` or `echo "text";` - Python 3 style: `print("text");` - C++ style: `cout
A lot of languages have a library that reads PEG (parser expression grammar) formatted code. When the spec is complete, it would be worthwhile to create one for PyHP++# to...
We can either take after PHP and have thousands of inconsistently named builtin functions or be like Python and have a small amount of builtins with imports handling the rest....
Runtime.run returns an ExitCode, which cannot be usefully consumes by anything other than to exit. > ExitCode is intended to be consumed only by the standard library (via [Termination::report()](https://doc.rust-lang.org/std/process/trait.Termination.html#tymethod.report)), and...