Add string type

This commit is contained in:
2025-01-03 22:18:35 +01:00
parent 660c774327
commit a7b0c53d23
11 changed files with 202 additions and 76 deletions

View File

@ -32,6 +32,10 @@ namespace gcc
{
return "Char";
}
else if (is_string_type(type))
{
return "String";
}
else
{
return "<<unknown-type>>";