-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathneko.cpp
More file actions
32 lines (27 loc) · 832 Bytes
/
neko.cpp
File metadata and controls
32 lines (27 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* Commercial Standard License
*
* This file is part of the Neko Nik C++ API.
*
* This software is licensed under the Commercial Standard License.
*
* You may not redistribute or resell the software.
* Commercial or educational use is NOT allowed.
* You are allowed to have this software installed on 3 machine(s) at once.
*
* This product does NOT come with any warranty, express or implied.
*
* The full license can be found in the LICENSE file included with this project.
*
* © Neko Nik <https://www.nekonik.com/impressum>
*
* Contact: [email protected]
*/
#include <iostream>
int main() {
std::cout << "Hello, Neko Nik!" << std::endl;
return 0;
}
// Compile with: g++ neko.cpp -o neko
// Run with: ./neko
// This file is used to test any new features or changes to the Neko Nik C++ API.