From bb2378d54ec6664e78a257fe58db42c0be4681f8 Mon Sep 17 00:00:00 2001 From: sprague_rick Date: Sat, 7 Sep 2024 22:38:11 -0400 Subject: [PATCH] update --- wandbox.bash | 4 ++++ wandbox.cpp | 25 +++++++++++++++++++++++++ wandbox.jl | 5 +++++ wandbox.py | 8 ++++++++ 4 files changed, 42 insertions(+) create mode 100755 wandbox.bash create mode 100644 wandbox.cpp create mode 100644 wandbox.jl create mode 100755 wandbox.py diff --git a/wandbox.bash b/wandbox.bash new file mode 100755 index 0000000..3b5d271 --- /dev/null +++ b/wandbox.bash @@ -0,0 +1,4 @@ +#/bin/bash + +echo "HELLO" + diff --git a/wandbox.cpp b/wandbox.cpp new file mode 100644 index 0000000..d353b3f --- /dev/null +++ b/wandbox.cpp @@ -0,0 +1,25 @@ +#include +#include +#include +#include +#include +#include + +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; +} diff --git a/wandbox.jl b/wandbox.jl new file mode 100644 index 0000000..f50f5fd --- /dev/null +++ b/wandbox.jl @@ -0,0 +1,5 @@ +struct X + x +end + + diff --git a/wandbox.py b/wandbox.py new file mode 100755 index 0000000..d29a044 --- /dev/null +++ b/wandbox.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python3 + +print("Entering") +for i in range(10): + print(i) + print(i) + +print("Done.")