* updated wayland (1.23.0 -> 1.23.1)
[t2sde.git] / misc / archive / hello.cc
blob31b18e84f7f882875d891cc202b399a9261a8cef
1 //
2 // --- T2-COPYRIGHT-NOTE-BEGIN ---
3 // T2 SDE: misc/archive/hello.cc
4 // Copyright (C) 2004 - 2024 The T2 SDE Project
5 // Copyright (C) 1998 - 2003 ROCK Linux Project
6 //
7 // This Copyright note is generated by scripts/Create-CopyPatch,
8 // more information can be found in the files COPYING and README.
9 //
10 // This program is free software; you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License version 2.
12 // --- T2-COPYRIGHT-NOTE-END ---
14 // Hello World in C++.
16 #include <iostream>
18 int main() {
19 std::cout << "Hello from C++." << std::endl;
20 return 0;