diff --git a/README.md b/README.md index 5a367f4..c4f237e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Free Pascal Random Bytes -This file is a part of [Renegade BBS](http://renegade.cc "Renegade BBS"). +This file is a part of Olive BBS. This will only work with [Free Pascal](http://freepascal.org "Free Pascal") version 3+. I Think [namespacing](http://wiki.freepascal.org/FPC_New_Features_3.0#Delphi-like_namespaces_units "Namespaces") is a good idea, and FPC 3+ is not hard to get your hands on for any platform. In fact, I believe its the most cross platform program that I have ever found, _**including** [ScummVM](http://scummvm.org/ "ScummVM is a program which allows you to run certain classic graphical point-and-click adventure games, provided you already have their data files.")_. @@ -12,7 +12,7 @@ Program RandomTest; {$mode objfpc}{$H+} uses - Renegade.Random, + Olive.Random, Classes; var @@ -26,13 +26,13 @@ begin R.Free; ``` -You can also use a custom random generator. It needs to implement Renegade.Random.RandomInterface; +You can also use a custom random generator. It needs to implement Olive.Random.RandomInterface; ```pascal Program RandomTest; {$mode objfpc}{$H+} uses - Renegade.Random, + Olive.Random, MyCustomGenerator, Classes;