From 3071bb4746dce37c61f9a8911c2ddfec714a81f3 Mon Sep 17 00:00:00 2001 From: "DESKTOP-P9VU163\\admin" Date: Mon, 30 Jun 2025 14:11:54 +0300 Subject: [PATCH] add commment for lesson --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 07b6cdb..f3c99d1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,6 @@ //Обучение ЦИКЛАМ +//lesson 1.4 X-MAS TREE function DrawTriangle(height: number) { for(let index = 1; index <= height; ){ DrawLine(index * 2 - 1, height - index); @@ -18,6 +19,7 @@ for(let index = 1; index <= 5;){ +//lesson 1.3 ANOTHER TRIANGLE function DrawLine(count: number, countP: number){ const minimalString = '*';