yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
f65d756bf
master
1// TEST(smoke):CPP_COMPILER_EXECUTE: 2 3#include <stdio.h> 4#include <stdlib.h> 5 6extern int thing ; 7 8int main (int argc ,char ** argv ) 9{ 10printf ("Hello World %d!\n" ,thing ); 11return 0 ; 12}