yum-mirror/slang

Making it easier to work with shaders

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

Ellie Hermaszewskaformatf65d756bf

master
177 B10 linesraw
1// TEST:SIMPLE: -entry main -target exe -pass-through c
2
3#include <stdio.h>
4#include <stdlib.h>
5
6int main(int argc, char** argv)
7{
8    printf("Hello World!\n");
9    return 0;
10}