diff --git a/__old_lazarus_projects/firstproject/firstproject.lpi b/__old_lazarus_projects/firstproject/firstproject.lpi
deleted file mode 100644
index 1afb68d..0000000
--- a/__old_lazarus_projects/firstproject/firstproject.lpi
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/firstproject/firstproject.lpr b/__old_lazarus_projects/firstproject/firstproject.lpr
deleted file mode 100644
index 2e08a51..0000000
--- a/__old_lazarus_projects/firstproject/firstproject.lpr
+++ /dev/null
@@ -1,18 +0,0 @@
-program firstproject;
-
-{$mode objfpc}{$H+}
-
-uses
- {$IFDEF UNIX}{$IFDEF UseCThreads}
- cthreads,
- {$ENDIF}{$ENDIF}
- Classes
- { you can add units after this };
-
-begin
- writeln('A Free Pascal progam');
- {$IFDEF WINDOWS}
- readln;
- {$ENDIF}
-end.
-
diff --git a/__old_lazarus_projects/firstproject/firstproject.lps b/__old_lazarus_projects/firstproject/firstproject.lps
deleted file mode 100644
index 3cfc735..0000000
--- a/__old_lazarus_projects/firstproject/firstproject.lps
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/pointer_project/pointer_project.lpi b/__old_lazarus_projects/pointer_project/pointer_project.lpi
deleted file mode 100644
index 01f21fc..0000000
--- a/__old_lazarus_projects/pointer_project/pointer_project.lpi
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/pointer_project/pointer_project.lpr b/__old_lazarus_projects/pointer_project/pointer_project.lpr
deleted file mode 100644
index a4067c2..0000000
--- a/__old_lazarus_projects/pointer_project/pointer_project.lpr
+++ /dev/null
@@ -1,20 +0,0 @@
-program pointer_project;
-
-{$mode objfpc}{$H+}
-
-type Plongint = ^longint;
-
-var
- anInt: longint = 243;
- intPtr: Plongint;
-
-begin
- intPtr := @anInt;
- WriteLn('The value of intPtr^ is ', intPtr^);
- Inc(intPtr^, 4);
- WriteLn('The value of anInt after Inc(intPtr^, 4) is: ',anInt);
- {$IFDEF WINDOWS}
- readln;
- {$ENDIF}
-end.
-
diff --git a/__old_lazarus_projects/pointer_project/pointer_project.lps b/__old_lazarus_projects/pointer_project/pointer_project.lps
deleted file mode 100644
index 3cd0a7e..0000000
--- a/__old_lazarus_projects/pointer_project/pointer_project.lps
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/shortstrings/stortstrings.lpi b/__old_lazarus_projects/shortstrings/stortstrings.lpi
deleted file mode 100644
index 550b424..0000000
--- a/__old_lazarus_projects/shortstrings/stortstrings.lpi
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/shortstrings/stortstrings.lpr b/__old_lazarus_projects/shortstrings/stortstrings.lpr
deleted file mode 100644
index 5acddd2..0000000
--- a/__old_lazarus_projects/shortstrings/stortstrings.lpr
+++ /dev/null
@@ -1,13 +0,0 @@
-program stortstrings;
-
-{$mode objfpc}{$H+}
-
-var testStr: string[10] = 'Lazarus';
-begin
- WriteLn('This shows testStr enclosed by square brackets [', testStr, ']');
- WriteLn('testStr''s length is ', Length(testStr), ' characters');
- {$IFDEF WINDOWS}
- ReadLn;
- {$ENDIF}
-end.
-
diff --git a/__old_lazarus_projects/shortstrings/stortstrings.lps b/__old_lazarus_projects/shortstrings/stortstrings.lps
deleted file mode 100644
index 2cdc096..0000000
--- a/__old_lazarus_projects/shortstrings/stortstrings.lps
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/simple_types/simple_types.lpi b/__old_lazarus_projects/simple_types/simple_types.lpi
deleted file mode 100644
index d04abf1..0000000
--- a/__old_lazarus_projects/simple_types/simple_types.lpi
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/simple_types/simple_types.lpr b/__old_lazarus_projects/simple_types/simple_types.lpr
deleted file mode 100644
index a0f0916..0000000
--- a/__old_lazarus_projects/simple_types/simple_types.lpr
+++ /dev/null
@@ -1,32 +0,0 @@
-program simple_types;
-
-{$mode objfpc}{$H+}
-
-const
- pName='simple_types';
- tab=#9;
-
-var
- smallInteger: SmallInt= -37;
- started: boolean = false;
-
-
-begin
- WriteLn('This program is called ', tab, tab, '"', pName, '"', sLineBreak);
-
- WriteLn('When initalised smallInteger has the value: ', smallInteger);
- WriteLn('When initialized started has the value: ', started, sLineBreak);
-
- smallInteger += 100;
- WriteLn('After adding 100 to smallInteger its value is: ', smallInteger);
- started:= not started;
- WriteLn('Negating started gives it the new value: ', started, sLineBreak);
-
- WriteLn('The highest value a SmallInt can store is: ', High(SmallInt));
- WriteLn('The lowest value a SmallInt can store is: ', Low(SmallInt));
-
- {$IFDEF WINDOWS}
- readln;
- {$ENDIF}
-end.
-
diff --git a/__old_lazarus_projects/simple_types/simple_types.lps b/__old_lazarus_projects/simple_types/simple_types.lps
deleted file mode 100644
index 06691f3..0000000
--- a/__old_lazarus_projects/simple_types/simple_types.lps
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/string_functions/string_functions.lpi b/__old_lazarus_projects/string_functions/string_functions.lpi
deleted file mode 100644
index 3188fd1..0000000
--- a/__old_lazarus_projects/string_functions/string_functions.lpi
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/string_functions/string_functions.lpr b/__old_lazarus_projects/string_functions/string_functions.lpr
deleted file mode 100644
index 48d6c6b..0000000
--- a/__old_lazarus_projects/string_functions/string_functions.lpr
+++ /dev/null
@@ -1,22 +0,0 @@
-program string_functions;
-
-{$mode objfpc}{$H+}
-
-uses strutils, sysutils;
-
-var st: string;
-
-begin
- WriteLn('Enter a word or pharase ([Enter] completes the entry)');
- ReadLn(st);
- WriteLn('You typed: ', st);
- WriteLn('Your text converted to uppercase: ', UpperCase(st));
- WriteLn('Your text converted to lowercase: ', LowerCase(st));
- WriteLn('Your text converted to proper case: ',
- AnsiProperCase(st, StdWordDelims));
- WriteLn('Your text reversed: ', ReverseString(st));
- {$IFDEF WINDOWS}
- ReadLn;
- {$ENDIF}
-end.
-
diff --git a/__old_lazarus_projects/string_functions/string_functions.lps b/__old_lazarus_projects/string_functions/string_functions.lps
deleted file mode 100644
index 8d677be..0000000
--- a/__old_lazarus_projects/string_functions/string_functions.lps
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/typed_const/typed_const.lpi b/__old_lazarus_projects/typed_const/typed_const.lpi
deleted file mode 100644
index 04d6aef..0000000
--- a/__old_lazarus_projects/typed_const/typed_const.lpi
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/__old_lazarus_projects/typed_const/typed_const.lpr b/__old_lazarus_projects/typed_const/typed_const.lpr
deleted file mode 100644
index 74263b3..0000000
--- a/__old_lazarus_projects/typed_const/typed_const.lpr
+++ /dev/null
@@ -1,28 +0,0 @@
-program typed_const;
-
-{$mode objfpc}{$H+}
-
-Function GetAName: string;
-const lastName: string = '';
-var constName: string = 'Lazarus';
-begin
- WriteLn('[Last name entered was "', lastName, '"]');
- WriteLn('[Value of constName is "', constName, '"]');
- Write('Enter a new name: ');
- ReadLn(Result);
- lastName := Result;
-end;
-
-begin
- WriteLn('First invocation of GetAName');
- WriteLn(GetAName);
- WriteLn;
- WriteLn('Second invocation of GetAName');
- WriteLn(GetAName);
- WriteLn;
- WriteLn('[Finished]');
- {$IFDEF WINDOWS}
- ReadLn;
- {$ENDIF}
-end.
-
diff --git a/__old_lazarus_projects/typed_const/typed_const.lps b/__old_lazarus_projects/typed_const/typed_const.lps
deleted file mode 100644
index 0f81e49..0000000
--- a/__old_lazarus_projects/typed_const/typed_const.lps
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-