You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/src/manual/getting-started.md
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -104,4 +104,19 @@ command-line-options).
104
104
105
105
A curated list of useful learning resources to help new users get started can be found on the [learning](https://julialang.org/learning/) page of the main Julia web site.
106
106
107
+
You can use the REPL as a learning resource by switching into the help mode.
108
+
Switch to help mode by pressing `?` at an empty `julia> ` prompt, before typing
109
+
anything else. Typing a keyword in help mode will fetch the documentation for
110
+
it, along with examples. Similarly for most functions or other objects you
111
+
might encounter!
112
+
113
+
```
114
+
help?> begin
115
+
search: begin disable_sigint reenable_sigint
116
+
117
+
begin
118
+
119
+
begin...end denotes a block of code.
120
+
```
121
+
107
122
If you already know Julia a bit, you might want to peek ahead at [Performance Tips](@ref man-performance-tips) and [Workflow Tips](@ref man-workflow-tips).
0 commit comments