mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
8 lines
103 B
C++
8 lines
103 B
C++
|
#include <iostream>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
std::cerr << "ok" << std::endl;
|
||
|
return 0;
|
||
|
}
|