Compare commits

...

2 commits

Author SHA1 Message Date
1fb00b9841
Add uwu in LLVM IR 2021-08-16 00:42:31 +02:00
a95adf01fe
Add uwu in HQ9+ 2021-08-16 00:21:36 +02:00
3 changed files with 12 additions and 1 deletions

View file

@ -1,6 +1,6 @@
# uwu # uwu
uwu in every (soon™) programming language in the world (70 languages and keeps growing) uwu in every (soon™) programming language in the world (72 languages and keeps growing)
## Languages ## Languages
@ -67,6 +67,7 @@ uwu in every (soon™) programming language in the world (70 languages and ke
## Assemblers ## Assemblers
- [High Level Assembly](uwu.hla) - [High Level Assembly](uwu.hla)
- [LLVM IR](uwu.ll)
## Esoteric Languages ## Esoteric Languages
@ -77,6 +78,7 @@ uwu in every (soon™) programming language in the world (70 languages and ke
- [Copypasta](uwu.copypasta) - [Copypasta](uwu.copypasta)
- [FiM++](uwu.fim) - [FiM++](uwu.fim)
- [Hexagony](uwu.hxg) - [Hexagony](uwu.hxg)
- [HQ9+](uwu.hq)
- [INTERCAL](uwu.i) - [INTERCAL](uwu.i)
- [LOLCODE](uwu.lolcode) - [LOLCODE](uwu.lolcode)
- [Mascarpone](uwu.mascarpone) - [Mascarpone](uwu.mascarpone)

1
uwu.hq Normal file
View file

@ -0,0 +1 @@
H

8
uwu.ll Normal file
View file

@ -0,0 +1,8 @@
declare i32 @puts(i8*)
@uwu = internal constant [4 x i8] c"uwu\00"
define i32 @main()
{
call i32 @puts(i8* getelementptr ([4 x i8], [4 x i8]* @uwu, i32 0, i32 0))
ret i32 0
}