Gabuzomeu

From Esolang
Jump to navigation Jump to search

Welcome !

The Gabuzomeu programming language have a syntax close to the assembly language and share lot of the interesting limitations of the Brainfuck.

Everything one needs to know is available on the GitHub README page here

For a code sample, the unavoidable "Hello world" can be written this way :

 CALC GA, #BUGAZOGA ; = 'H' = 72
 DUMP GA
 CALC BU, #BUZOBUBU ; = 'e' = 101
 DUMP BU
 CALC ZO, #BUZOMEUGA ; = 'l' = 108
 DUMP ZO
 DUMP ZO
 CALC MEU, #BUZOMEUMEU ; = 'o' = 111
 DUMP MEU
 CALC GA, #ZOGAGA ; =  ' ' = 32
 DUMP GA
 CALC BU, #BUMEUBUMEU ; = 'w' = 119
 DUMP BU
 DUMP MEU
 CALC BU, #BUMEUGAZO ; = 'r' = 114
 DUMP BU
 DUMP ZO
 CALC GA, #BUZOBUGA ; = 'd' = 100
 DUMP GA

For the records, one Quine is available here, the source code is quiet long (29.755 bytes)

Have fun :p