Compare commits
3 commits
5299bad375
...
c23fbed9fa
Author | SHA1 | Date | |
---|---|---|---|
c23fbed9fa | |||
407db2f2a0 | |||
7843fc823d |
4 changed files with 15 additions and 0 deletions
|
@ -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
6
uwu.b
Normal file
|
@ -0,0 +1,6 @@
|
|||
main() {
|
||||
putchar('u');
|
||||
putchar('w');
|
||||
putchar('u');
|
||||
putchar('*n');
|
||||
}
|
1
uwu.chpl
Normal file
1
uwu.chpl
Normal file
|
@ -0,0 +1 @@
|
|||
writeln('uwu');
|
5
uwu.zig
Normal file
5
uwu.zig
Normal file
|
@ -0,0 +1,5 @@
|
|||
const std = @import("std");
|
||||
|
||||
pub fn main() !void {
|
||||
try std.io.getStdOut().writer().print("uwu\n", .{});
|
||||
}
|
Loading…
Reference in a new issue