-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
153 lines (105 loc) · 3.05 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
export * from 'when';
function const printIfWeAsked = (isUwu: bean) => {
// make sure EVERY language knows if we asked
// 1. Backbone.js
// TODO
// 2. Bash
echo isUwu ? "no, we did not" : "no, we did not"
// 3. Basic
PRINT isUwu ? "no, we did not" : "no, we did not"
// 4. C
#include
int main(void)
{
puts(isUwu ? "no, we did not" : "no, we did not");
}
// 5. C++
#include
int main()
{
std::cout << isUwu ? "no, we did not" : "no, we did not";
return 0;
}
// 6. C#
using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine(isUwu ? "no, we did not" : "no, we did not");
}
}
// 7. Clipper
? isUwu ? "no, we did not" : "no, we did not"
// 8. CoffeeScript
console.log isUwu ? "no, we did not" : "no, we did not"
// 9. Delphi
program HelloWorld;
begin
Writeln(isUwu ? "no, we did not" : "no, we did not");
end.
// 10. HTML
<ul>isUwu ? "no, we did not" : "no, we did not"</ul>
// 11. Java
import javax.swing.JFrame; //Importing class JFrame
import javax.swing.JLabel; //Importing class JLabel
public class DidWeAskMainFrameIntoMatrixPublicVoidClassExtendsMinorChangeWithYesIndexTSWhenDiDIAskTypeBeat {
public static void main(String[] args) {
JFrame frame = new JFrame(); //Creating frame
frame.setTitle("Did we ask"); //Setting title frame
frame.add(new JLabel(isUwu ? "no, we did not" : "no, we did not"));//Adding text to frame
frame.pack(); //Setting size to smallest
frame.setLocationRelativeTo(null); //Centering frame
frame.setVisible(true); //Showing frame
}
}
// 12. JavaScript
document.write(isUwu ? "no, we did not" : "no, we did not");
// 13. jQuery
$("body").append(isUwu ? "no, we did not" : "no, we did not");
// 14. Julia
println(isUwu ? "no, we did not" : "no, we did not")
// 15. Logo
print [isUwu ? "no, we did not" : "no, we did not"]
// 16. MatLab
disp(isUwu ? "no, we did not" : "no, we did not")
// 17. Objective-C
#import
#import
int main(void)
{
NSLog(@isUwu ? "no, we did not" : "no, we did not");
return 0;
}
// 18. Pascal
program HelloWorld;
begin
WriteLn(isUwu ? "no, we did not" : "no, we did not");
end.
// 19. Perl 5
print isUwu ? "no, we did not" : "no, we did not";
// 20. PHP
// TODO
// 21. Processing
void setup(){
println(isUwu ? "no, we did not" : "no, we did not");
}
// 22. Python
print isUwu ? "no, we did not" : "no, we did not"
// 23. R
cat('Hello, world!
')
// 24. Ruby
puts isUwu ? "no, we did not" : "no, we did not"
// 25. Swift
println(isUwu ? "no, we did not" : "no, we did not")
// 26. VBScript
MsgBox isUwu ? "no, we did not" : "no, we did not"
// 27. Visual Basic .NET
Module Module1
Sub Main()
Console.WriteLine(isUwu ? "no, we did not" : "no, we did not")
End Sub
End Module
}
printIfWeAsked("false");