We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4e2d61 commit 76e4637Copy full SHA for 76e4637
4 files changed
InstructorResources/Solutions/CommentingCodeSoln.mlx
-9 Bytes
Scripts/CommentingCode.mlx
-11 Bytes
SoftwareTests/PreFiles/PreCommentingCode.m
@@ -2,4 +2,9 @@
2
% ---- Known Issues -----
3
KnownIssuesID = "";
4
% ---- Pre-run commands -----
5
-
+edit = @(str)MyEdit(str);
6
+
7
+function MyEdit(str)
8
+assert(exist(str,"file"))
9
+disp("Edit the file " + str)
10
+end
SoftwareTests/PreFiles/PreCommentingCodeSoln.m
@@ -4,4 +4,11 @@
addpath(genpath(fullfile(currentProject().RootFolder,...
- "InstructorResources","Solutions","FunctionLibrarySoln")))
+ "InstructorResources","Solutions","FunctionLibrarySoln")))
11
12
13
14
0 commit comments