Fix try_compile madness

This commit is contained in:
Xaymar
2025-04-20 15:49:33 +02:00
parent e57f229c77
commit 5b3a47076d
6 changed files with 251 additions and 199 deletions
+3 -1
View File
@@ -53,7 +53,7 @@ blitz::ast::variable::~variable()
* - Struct Variable
* Variable.StructName
* Variable:StructName
*
*
* Access:
* - Struct Access:
* Variable\Key
@@ -165,6 +165,8 @@ bool blitz::ast::value::can_parse(std::shared_ptr<blitz::lexer> lexer)
}
break;
}
default:
break;
}
return false;
+1 -1
View File
@@ -85,4 +85,4 @@ int main(int argc, char** argv)
// Print Int(myName) ; <- Prints the address of the object contained in myName.
// ```
//
// As this is a Basic language, there is no concept of undefined or uninitialized anything. Every behavior is well defined.
// As this is a Basic language, there is no concept of undefined or uninitialized anything. Every behavior is "well" defined even if confusing.