Some refactoring of ranges. env::AUTHORS and env::AUTHOR_EMAILS

This commit is contained in:
Christoffer Lerno
2025-07-16 12:23:24 +02:00
parent 078ce38c57
commit 379d16abe7
16 changed files with 86 additions and 15 deletions

View File

@@ -3,6 +3,8 @@ import std;
import bar;
import clib;
import clib2;
import std::core::env;
fn int test_doubler(int x) @if(env::WIN32) => x * x;
extern fn int test_doubler(int) @if(!env::WIN32);
@@ -11,6 +13,11 @@ extern fn void printf(char *, ...);
fn int main()
{
printf("Hello World!\n");
printf("Authors:");
io::printn(env::AUTHORS);
printf("Author emails:");
io::printn(env::AUTHOR_EMAILS);
bar::test();
printf("Hello double: %d\n", test_doubler(11));
if ($feature(ABCD)) io::printn("ABCD");