Compare commits

...

3 Commits

Author SHA1 Message Date
sech1p c23fbed9fa Add uwu in B 2021-08-05 03:01:15 +02:00
sech1p 407db2f2a0 Add uwu in Zig 2021-08-05 02:58:01 +02:00
sech1p 7843fc823d Add uwu in Chapel 2021-08-05 02:52:10 +02:00
4 changed files with 15 additions and 0 deletions

View File

@ -7,9 +7,11 @@ uwu in every programming language in the world
- [AppleScript](uwu.applescript)
- [AWK](uwu.awk)
- [Bourne shell (sh)](uwu.sh)
- [B](uwu.b)
- [C](uwu.c)
- [C#](uwu.cs)
- [C++](uwu.cpp)
- [Chapel](uwu.chpl)
- [Clojure](uwu.clj)
- [COBOL](uwu.cbl)
- [D](uwu.d)
@ -37,6 +39,7 @@ uwu in every programming language in the world
- [Ruby](uwu.rb)
- [Vim script](uwu.vim)
- [Visual Basic .NET](uwu.vbnet)
- [Zig](uwu.zig)
## Esoteric Languages

6
uwu.b Normal file
View File

@ -0,0 +1,6 @@
main() {
putchar('u');
putchar('w');
putchar('u');
putchar('*n');
}

1
uwu.chpl Normal file
View File

@ -0,0 +1 @@
writeln('uwu');

5
uwu.zig Normal file
View File

@ -0,0 +1,5 @@
const std = @import("std");
pub fn main() !void {
try std.io.getStdOut().writer().print("uwu\n", .{});
}