jiyu is a programming language created in 2019 by Josh Huelsman.
#1547on PLDB | 5Years Old |
git clone https://github.com/machinamentum/jiyu
A compiler and programming language for fun.
#clang_import
"""
#include <stdio.h>
""";
func @metaprogram main(argc: int32, argv: **uint8) {
printf("Hello, Sailor!\n");
var file = fopen("myfile.txt", "wb");
fwrite("Hello, Pilot!\n".data, 1, 14, file);
fclose(file);
}