pike.git/
CHANGES
Branch:
Tag:
Non-build tags
All tags
No tags
2017-09-09
2017-09-09 18:18:33 by Martin Nilsson <nilsson@fastmail.com>
493913ea3787b0f06bdeb61cd49582f2743267e6 (
8
lines) (+
8
/-
0
)
[
Show
|
Annotate
]
Branch:
8.1
Test case and CHANGES for void changes.
85:
including integers prefixed with 0x and 0b, and floating point numbers in scientific notation.
+
o Returning void
-
+
It is now possible to return void responses from void functions.
+
+
void a() { return; }
+
void b() { return a(); }
+
+
Bug fixes ---------