Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion FirstSteps/02b-XSharp_Strings.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"source": [
"Before going further, let's have a look at the previous code cell :\n",
"- `#r \"C:\\Program Files (x86)\\XSharp\\Redist\\XSharp.Core.dll\"` \n",
"This loads the external library `Xsharp.Code.Dll` into the **XSharpInteractive** memory. Adapt the path to your installation if needed.\n",
"This loads the external library `Xsharp.Core.Dll` into the **XSharpInteractive** memory. Adapt the path to your installation if needed.\n",
"- `Functions.Upper()` \n",
"This will call the `Upper()` function, from the group of tools named `Functions`. In a standard X# application, you don't have to specify the `Functions.` part and just call `Upper()`. Notice you have a put a **dot** between `Functions` and the function name.\n",
"- `using XSharp.Core` \n",
Expand Down