summaryrefslogtreecommitdiff
path: root/Source/Applications/SampleApps/cxxdemo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Applications/SampleApps/cxxdemo.cpp')
-rw-r--r--Source/Applications/SampleApps/cxxdemo.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/Source/Applications/SampleApps/cxxdemo.cpp b/Source/Applications/SampleApps/cxxdemo.cpp
deleted file mode 100644
index 3d452e7..0000000
--- a/Source/Applications/SampleApps/cxxdemo.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <Syscall/Syscall.wtf.h>
-#include <String.class.h>
-#include <Binding/VirtualTerminal.class.h>
-#include <Binding/Thread.class.h>
-#include <Binding/File.class.h>
-
-int main(const Vector<String>& args) {
- outvt << "Enter some text plz : ";
- String s = invt.readLine();
- outvt << s;
- Thread t = Thread::get();
- for (char c = ' '; c <= 'z'; c++) {
- t.sleep((u32int)c / 4);
- outvt.put(c);
- }
- outvt << "\n";
- outvt << "Salut les gens ! c'est le progrès !!!\nLe boeuf mort est juste là : ";
- outvt << 0xDEADBEEF;
- outvt << "\n";
-}