wip parser structure with placeholders

This commit is contained in:
hugogogo
2026-05-01 01:58:04 +02:00
parent 512ba9b5f4
commit 241cbdaff1
4 changed files with 122 additions and 8 deletions

View File

@@ -97,7 +97,7 @@ int main(int ac, char **av)
}
else if (tokens[i].type == TOKEN_NUMBER_DOUBLE)
{
printf("%f\n", tokens[i].value_double);
printf("%g\n", tokens[i].value_double);
}
else
{