mirror of
https://github.com/NixOS/nix.git
synced 2025-11-15 15:02:42 +01:00
explicitly. If you forget a dependency, it's simply not visible to the compiler, and so the compilation fails. This is a big plus over conventional Make.
9 lines
124 B
C
9 lines
124 B
C
#include <stdio.h>
|
|
|
|
#include "hello.h"
|
|
|
|
int main(int argc, char * * argv)
|
|
{
|
|
printf("Hello " WHAT "\n");
|
|
return 0;
|
|
}
|