This commit is contained in:
sprague_rick 2024-09-07 22:38:11 -04:00
parent bcf2cfd64d
commit bb2378d54e
4 changed files with 42 additions and 0 deletions

4
wandbox.bash Executable file
View File

@ -0,0 +1,4 @@
#/bin/bash
echo "HELLO"

25
wandbox.cpp Normal file
View 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
View File

@ -0,0 +1,5 @@
struct X
x
end

8
wandbox.py Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env python3
print("Entering")
for i in range(10):
print(i)
print(i)
print("Done.")