update
This commit is contained in:
parent
bcf2cfd64d
commit
bb2378d54e
4
wandbox.bash
Executable file
4
wandbox.bash
Executable file
|
|
@ -0,0 +1,4 @@
|
||||||
|
#/bin/bash
|
||||||
|
|
||||||
|
echo "HELLO"
|
||||||
|
|
||||||
25
wandbox.cpp
Normal file
25
wandbox.cpp
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
#include <iostream>
|
||||||
|
#include <list>
|
||||||
|
#include <map>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <unordered_map>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
using std::cout;
|
||||||
|
using std::endl;
|
||||||
|
|
||||||
|
int main(int argc, char* argp[]) {
|
||||||
|
int counter = 0;
|
||||||
|
int b = 10;
|
||||||
|
int x= 10;
|
||||||
|
if (x = 0) {
|
||||||
|
cout << "This should generate a lint error" << endl;
|
||||||
|
}
|
||||||
|
while (true) {
|
||||||
|
cout << "hello" << endl;
|
||||||
|
|
||||||
|
cout << counter++ << endl;
|
||||||
|
sleep(1);
|
||||||
|
}
|
||||||
|
return 0; //-1;
|
||||||
|
}
|
||||||
5
wandbox.jl
Normal file
5
wandbox.jl
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
struct X
|
||||||
|
x
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
8
wandbox.py
Executable file
8
wandbox.py
Executable file
|
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
print("Entering")
|
||||||
|
for i in range(10):
|
||||||
|
print(i)
|
||||||
|
print(i)
|
||||||
|
|
||||||
|
print("Done.")
|
||||||
Loading…
Reference in New Issue
Block a user