diff options
Diffstat (limited to 'examples/cross_calculator')
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/cross_calculator/ios/resources/ui/NRViewController.xib b/examples/cross_calculator/ios/resources/ui/NRViewController.xib index b260db2af..2118b5044 100644 --- a/examples/cross_calculator/ios/resources/ui/NRViewController.xib +++ b/examples/cross_calculator/ios/resources/ui/NRViewController.xib @@ -85,7 +85,7 @@ <int key="IBUITag">2</int> <bool key="IBUIUserInteractionEnabled">NO</bool> <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string> - <string key="IBUIText">Nimrod Crossplatform Calculator</string> + <string key="IBUIText">Nim Crossplatform Calculator</string> <object class="NSColor" key="IBUITextColor" id="128895179"> <int key="NSColorSpace">1</int> <bytes key="NSRGB">MCAwIDAAA</bytes> diff --git a/examples/cross_calculator/lazarus/unit1.pas b/examples/cross_calculator/lazarus/unit1.pas index aa0ef6cf7..6091a61d3 100644 --- a/examples/cross_calculator/lazarus/unit1.pas +++ b/examples/cross_calculator/lazarus/unit1.pas @@ -42,7 +42,7 @@ function myAdd(x, y: longint): longint; cdecl; external; procedure TForm1.FormCreate(Sender: TObject); begin - // we initialize the Nimrod data structures here: + // we initialize the Nim data structures here: NimMain(); end; diff --git a/examples/cross_calculator/nim_commandline/nim.cfg b/examples/cross_calculator/nim_commandline/nim.cfg index 41c034430..6f0cb4a01 100644 --- a/examples/cross_calculator/nim_commandline/nim.cfg +++ b/examples/cross_calculator/nim_commandline/nim.cfg @@ -1,4 +1,4 @@ -# Nimrod configuration file. +# Nim configuration file. # The file is used only to add the path of the backend to the compiler options. path="../nim_backend" diff --git a/examples/cross_calculator/readme.txt b/examples/cross_calculator/readme.txt index 5011792b9..72e4130eb 100644 --- a/examples/cross_calculator/readme.txt +++ b/examples/cross_calculator/readme.txt @@ -2,7 +2,7 @@ The cross platform calculator illustrates how to use Nim to create a backend called by different native user interfaces. Since the purpose of the example is to show how the cross platform code -interacts with Nimrod the actual backend code is just a simple addition proc. +interacts with Nim the actual backend code is just a simple addition proc. By keeping your program logic in Nim you can easily reuse it in different platforms. |