Skip to content

Releases: nthnn/wtfC

wtfC!? v1.0.1

26 Nov 07:01
Compare
Choose a tag to compare

"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

Changes

  • Added random macro
  • Added unless macro
  • Added etc macro
  • Added sub macro
  • Added true and false
  • wtfC!? illustration by Lady Selene

wtfC!? v1.0.0

25 Nov 19:45
Compare
Choose a tag to compare

"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