forked from luz-lang/luzlang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
102 lines (98 loc) · 2.8 KB
/
Copy pathmkdocs.yml
File metadata and controls
102 lines (98 loc) · 2.8 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
site_name: Luz Language
site_description: Luz is an open-source interpreted programming language written in Python. Clean syntax, OOP, closures, pattern matching, error handling, and a built-in package manager.
site_url: https://elabsurdo984.github.io/luz-lang/
repo_url: https://github.com/Elabsurdo984/luz-lang
repo_name: Elabsurdo984/luz-lang
theme:
name: material
palette:
- scheme: slate
primary: deep orange
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: deep orange
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
font:
text: Inter
code: JetBrains Mono
features:
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.footer
- search.highlight
- search.suggest
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.tooltips
- toc.follow
logo: img/icon.png
favicon: img/icon.png
icon:
repo: fontawesome/brands/github
extra_css:
- stylesheets/extra.css
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
- pymdownx.mark
- pymdownx.keys
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- admonition
- attr_list
- md_in_html
- tables
- toc:
permalink: true
title: On this page
nav:
- Home: index.md
- Download: download.md
- Getting Started:
- Installation: getting-started/installation.md
- Usage: getting-started/usage.md
- Language Reference:
- Types: language/types.md
- Variables: language/variables.md
- Operators: language/operators.md
- Control Flow: language/control-flow.md
- Format Strings: language/format-strings.md
- Functions: language/functions.md
- Lambdas: language/lambdas.md
- Collections: language/collections.md
- Object-Oriented Programming: language/oop.md
- Error Handling: language/error-handling.md
- Modules: language/modules.md
- Built-in Functions: builtins.md
- Standard Library:
- luz-math: stdlib/math.md
- luz-random: stdlib/random.md
- luz-io: stdlib/io.md
- luz-system: stdlib/system.md
- luz-clock: stdlib/clock.md
- Ray Package Manager: ray.md
- Architecture: architecture.md
- Versioning: versioning.md