HolyFuck
Jump to navigation
Jump to search
HolyFuck
Creator: WebNiko (april7w7 in github) Year: 2025 Type: Esoteric / interpreted Description: Language that mixes Brainfuck and Holy-C with funny commands.
Commands
- fuckint <name> = <value or Brainfuck inline> ; // declare variable
- printhishit(<name>) ; // prints character from variable
- gimmefuck(<name>) ; // reads character from keyboard
- fuckadd(a,b), fucksub(a,b), fuckmul(a,b), fuckdiv(a,b) ; // arithmetic operations
- Inline Brainfuck possible anywhere (+ - < > [ ] , .)
- Comments: // comment
Hello Example
fuckint H = 72 printhishit(H); fuckint e = 101 printhishit(e); fuckint l = 108 printhishit(l); printhishit(l); fuckint o = 111 printhishit(o);
References
- HolyFuck Compiler in C https://github.com/april7w7/HolyFuck-