File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ jobs:
17
17
18
18
steps :
19
19
- uses : actions/checkout@v4
20
+ - run : rm -rf tests
20
21
- name : Format check
21
22
uses : ArkScript-lang/action-format@master
22
23
with :
23
24
folder : .
24
- exclude : tests
25
25
26
26
build :
27
27
runs-on : ubuntu-24.04
Original file line number Diff line number Diff line change 102
102
# (print "this will always be executed"))
103
103
# =end
104
104
# @author https://github.com/SuperFola
105
- (macro unless (cond ...body)
106
- (if (not cond) ...body))
105
+ (macro unless (cond ...body) (if (not cond) ...body))
107
106
108
107
# @brief Iterate until the condition is truthy
109
108
# @param cond condition
116
115
# (print data) # [0 1 2 3 4 5 6 7 8 9]
117
116
# =end
118
117
# @author https://github.com/SuperFola
119
- (macro until (cond body)
120
- (while (not cond) body))
118
+ (macro until (cond body) (while (not cond) body))
You can’t perform that action at this time.
0 commit comments