yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Ellie Hermaszewskaformatf65d756bf

master
187 B12 linesraw
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{
10    printf("Hello World %d!\n", thing);
11    return 0;
12}