lec 3 done

This commit is contained in:
2026-01-03 01:21:46 +10:00
parent 1c50d7ce0e
commit cca7d57569
14 changed files with 161 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
mixin createList(listType, items, tag)
- var dispListType = "ul"
- if (listType == "ol")
- dispListType = "ol"
#{dispListType}.list
each item in items
li
#{tag} #{item}
// Вызов миксина
+createList('ul', ['Python', 'JavaScript', 'Java'], 'strong')