Skip to main content.
Code Bits

Title

Test Project v1.1.1.1

Notes

This test project demonstrates the possible
content available to Code Bit projects.

Source Code - C

Download: hello.c
#include <stdio.h>
int main()
{
   
printf("Hello World!");
   return 
0;

Source Code - C++

Download: hello.cpp
#include <iostream>
int main()
{
   
std::cout << "Hello World!" << std::endl;
   return 
0;