Skip to content

Commit

Permalink
Show scripts at the right time
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Jan 16, 2024
1 parent 247d16a commit 6f74be4
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions docs/morning_session/the_way_of_the_program.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The way of the program
# The Way Of The Program

!!!- info "Learning objectives"

Expand Down Expand Up @@ -53,8 +53,8 @@ flowchart TD
programming_language[Programming language]
scripting_language[Scripting language]
interpreter[Interpreter]
%% scripts[Scripts]
%% text_files[Text files]
scripts[Scripts]
text_files[Text files]
end
style sub_programming_language fill:#ccf,color:#000,stroke:#fcc
Expand All @@ -63,7 +63,7 @@ flowchart TD
uppmax[UPPMAX]
uppmax_modules[UPPMAX modules]
uppmax_clusters[UPPMAX clusters]
%% text_editors[Text editors]
text_editors[Text editors]
%%x_forwarding[X-forwarding]
%%remote_desktop[Remote desktop]
end
Expand All @@ -73,29 +73,30 @@ flowchart TD
python --> |is a| interpreted_language
python --> |is a| scripting_language
%% programming_language --> |uses| text_files
programming_language --> |uses| text_files
interpreted_language --> |has a| interpreter
scripting_language --> |is a|interpreted_language
%% scripting_language --> |runs| scripts
%% scripts --> |are| text_files
scripting_language --> |runs| scripts
scripts --> |are| text_files
%% scripts --> |can use| command_line_arguments
uppmax --> |has| uppmax_clusters
uppmax_clusters --> |have| uppmax_modules
%%uppmax_clusters --> |have| text_editors
uppmax_clusters --> |have| text_editors
%%uppmax_clusters --> |allow| x_forwarding
%%uppmax_clusters --> |has| remote_desktop
%% uppmax_modules --> |allow the use of| python_packages
uppmax_modules --> |allow the use of| interpreter
%% text_editors --> |work on|text_files
text_editors --> |work on|text_files
%%x_forwarding --> |allows|graphics
%%remote_desktop --> |allows|graphics
%% variables ~~~ uppmax
```


## Exercises

### Exercise 1: Python and the Python interpreter
Expand Down

0 comments on commit 6f74be4

Please sign in to comment.