git @ Cat's Eye Technologies Dipple / master c / cc65 / hello.c
master

Tree @master (Download .tar.gz)

hello.c @masterraw · history · blame

/*
 * Example of cc65-acceptable C code
 *
 * SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
 * For more information, please refer to <https://unlicense.org/>
 * SPDX-License-Identifier: Unlicense
 */

#include <stdio.h>

int main(int argc, char **argv)
{
    printf("Hello, world!\n");
    return 0; /* no exit() */
}