Skip to content

wtfC!? v1.0.0

Latest
Compare
Choose a tag to compare
@nthnn nthnn released this 25 Nov 19:45
· 27 commits to main since this release

"wtfC!?" is a playful language extension for C and C++ that introduces unconventional and humorous macros to replace common programming constructs. This project aims to add a touch of creativity and humor to C/C++ programming, offering an alternative way to write code that might appeal to developers looking for a unique coding experience.

Warning

wtfC!? was made for fun, thus, do not use it for professional use.

Usage

import <stdio.h>

main(i32 argc, string argv[])
begin
	nothing;

	i32* test = make(i32, 10);
	test[9] = 100;

	echo(test[9]);
	echo("\nHello, damn world!\r\n");

	for ever;
end