https://github.com/shader-slang/slang
Raw File
Tip revision: 1f3130055956dbe441f7fc6849b189624a05f7df authored by Yong He on 01 September 2022, 17:01:36 UTC
Public interface for arithmetic types in stdlib. (#2389)
Tip revision: 1f31300
export-library.slang
//TEST_IGNORE_FILE:

// export-library.slang

int doThing(int b)
{
    return b + b + 1;
}

export int foo(int a) 
{ 
    return a * a + 1 + doThing(a + 2);
}

back to top