Compare commits

...

3 Commits

Author SHA1 Message Date
sech1p ba3f0acc56
Add uwu in 05AB1E (#2)
Thanks @ZippyMagician
2021-08-16 22:12:59 +02:00
sech1p 9bb898aa49
Add uwu in Jelly (#2)
Thanks @ZippyMagician
2021-08-16 22:09:07 +02:00
sech1p da176b9501
Add uwu in Odin (#2)
Thanks @ZippyMagician
2021-08-16 22:03:26 +02:00
4 changed files with 17 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# uwu
uwu in every (soon™) programming language in the world (72 languages and keeps growing)
uwu in every (soon™) programming language in the world (75 languages and keeps growing)
## Languages
@ -42,6 +42,7 @@ uwu in every (soon™) programming language in the world (72 languages and ke
- [Nim](uwu.nim)
- [Objective-C](uwu.m)
- [OCaml](uwu.ml)
- [Odin](uwu.odin)
- [Pascal](uwu.pas)
- [Perl](uwu.pl)
- [PHP](uwu.php)
@ -83,3 +84,8 @@ uwu in every (soon™) programming language in the world (72 languages and ke
- [LOLCODE](uwu.lolcode)
- [Mascarpone](uwu.mascarpone)
- [Vyxal](uwu.vy)
## Golfing Languages
- [05AB1E](uwu.05ab1e)
- [Jelly](uwu.jelly)

1
uwu.05ab1e Normal file
View File

@ -0,0 +1 @@
"uwu"

2
uwu.jelly Normal file
View File

@ -0,0 +1,2 @@
“uwu

7
uwu.odin Normal file
View File

@ -0,0 +1,7 @@
package uwu
import "core:fmt"
main :: proc() {
fmt.println("uwu");
}