File: hello.cpp

package info (click to toggle)
zmk 0.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,132 kB
  • sloc: makefile: 1,749; sh: 313; ansic: 42; awk: 12; cpp: 12
file content (7 lines) | stat: -rw-r--r-- 104 bytes parent folder | download
1
2
3
4
5
6
7
#include <iostream>

#include "hello.h"

void hello(void) {
	std::cout << "Hello World" << std::endl;
}