Skip to content

Changed Code to Core #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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