Typehinting merge #50

Merged
belliash merged 298 commits from typehinting into master 2019-04-17 11:27:52 +02:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit b320d35cf7 - Show all commits

View File

@ -22,6 +22,7 @@ class Program {
private void testNumbers() {
printf("%%b = '%b'\n", $this->n);
printf("%%c = '%c'\n", $this->c);
printf("%%d = '%d'\n", $this->c);
printf("%%d = '%d'\n", $this->n);
printf("%%e = '%e'\n", $this->n);
printf("%%u = '%u'\n", $this->n);

View File

@ -6,6 +6,7 @@
[many monke]
%b = '10100111101010011010101101'
%c = 'A'
%d = '65'
%d = '43951789'
%e = '4.395179e+07'
%u = '43951789'