-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.html
More file actions
37 lines (35 loc) · 1.32 KB
/
Copy pathfeatures.html
File metadata and controls
37 lines (35 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tree10 기능 설명</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Tree10 기능 설명</h1>
<nav>
<ul>
<li><a href="index.html">홈</a></li>
<li><a href="features.html">기능 설명</a></li>
<li><a href="compile.html">컴파일 가이드</a></li>
<li><a href="apps.html">기본 앱 소개</a></li>
</ul>
</nav>
</header>
<section id="features-list">
<h2>Tree10의 주요 기능</h2>
<ul>
<li>파일 시스템: 파일 및 디렉토리 생성, 삭제, 읽기, 쓰기 기능.</li>
<li>메모리 관리: 메모리 할당(`malloc`), 해제(`free`), 재할당(`realloc`).</li>
<li>입출력 관리: 화면에 텍스트 출력 및 사용자 입력 처리.</li>
<li>바이너리 파일 실행: `.air` 파일을 직접 실행할 수 있는 기능.</li>
<li>명령어 기반 쉘(`dmd`): 간단한 명령어로 운영체제와 상호작용 가능.</li>
</ul>
</section>
<footer>
<p>© 2024 Tree10 프로젝트</p>
</footer>
</body>
</html>