mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-06 10:44:06 +00:00
Global variable initialization support
This commit is contained in:
@@ -179,6 +179,10 @@ Token make_token_ident(String s) {
|
||||
Token t = {Token_Ident, s};
|
||||
return t;
|
||||
}
|
||||
Token make_token_ident(char const *s) {
|
||||
Token t = {Token_Ident, make_string_c(s)};
|
||||
return t;
|
||||
}
|
||||
|
||||
|
||||
struct ErrorCollector {
|
||||
|
||||
Reference in New Issue
Block a user