Skip to content

Commit

Permalink
Условно скриване на един от примерите
Browse files Browse the repository at this point in the history
  • Loading branch information
triffon committed Oct 23, 2024
1 parent f89f2d6 commit c9cd4ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
1.1-scheme_basics,
1.2-scheme_envs,
# 1.3-scheme_highorder,
# 1.4-scheme_lists,
1.4-scheme_lists,
# 1.5-scheme_ds,
# 1.6-scheme_mutation,
# 1.7-scheme_streams,
Expand Down
2 changes: 1 addition & 1 deletion 1.4-scheme_lists.tex
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ \section{Функции от по-висок ред за списъци}
\item \evalstop{(map square '(1 2 3))}{(1 4 9)}
\item \evalstop{(map cadr '((a b c) (d e f) (g h i)))}{(b e h)}
\item \evalstop{(map (lambda (f) (f 2)) (list square 1+ odd?))}{(4 3 \#f)}
\item \evalstop{(map (lambda (f) (f 2)) (map twice (list square 1+ boolean?)))}{(16 4 \#t)}
\ifbool{highorder}{\item \evalstop{(map (lambda (f) (f 2)) (map twice (list square 1+ boolean?)))}{(16 4 \#t)}}{}
\end{itemize}
\end{frame}

Expand Down

0 comments on commit c9cd4ce

Please sign in to comment.