mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +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;
|
|
}
|