Examine individual changes
This page allows you to examine the variables generated by the Abuse Filter for an individual change.
Variables generated for this change
Variable | Value |
---|---|
Edit count of the user (user_editcount) | 2 |
Name of the user account (user_name) | 'Shivani' |
Age of the user account (user_age) | 10715 |
Page ID (page_id) | 0 |
Page namespace (page_namespace) | 0 |
Page title (without namespace) (page_title) | 'Ku' |
Full page title (page_prefixedtitle) | 'Ku' |
Action (action) | 'edit' |
Edit summary/reason (summary) | '' |
Old content model (old_content_model) | '' |
New content model (new_content_model) | 'wikitext' |
Old page wikitext, before the edit (old_wikitext) | '' |
New page wikitext, after the edit (new_wikitext) | '{| class="wikitable" style="float:right; margin:0 0 1em 1em; width: 25em;"
|+ Ku
|-
! Paradigm(s)
| poetic, imperative, stack-based
|-
! Designed by
| [[User:Shivani]]
|-
! Created in
| 2025
|-
! Memory system
| stack-based
|-
! Dimensions
| one-dimensional
|-
! Computational class
| Turing complete
|-
! Official interpreter
| ku-lang
|-
! File extension(s)
| .ku
|-
! Influenced by
| Haiku Poetry (Japanese)
|-
|-
! Syntax style
| haiku (5-7-5 syllables)
|-
! Website
| [https://github.com/NewSmoke38/ku-lang GitHub repo]
|-
! GitHub
| [https://github.com/NewSmoke38/ku-lang GitHub repo]
|-
! NPM package
| [https://www.npmjs.com/package/ku-lang ku-lang on npm]
|-
! More documentation
| [https://www.npmjs.com/package/ku-lang ku-lang on npm]
|-
! Sample program
| <pre>
he river is calm
three plus three is flowing now
echo river now
</pre>
|}
Ku is a poetic one-dimensional [[esoteric programming language]] created in 2024 by [[User:Shivani|Shivani]] where every program must be written in haiku format (5-7-5 syllables). Code combines natural language programming with strict syllable validation, featuring rhyme detection, palindrome word processing, and haiku fusion while maintaining the beauty of traditional Japanese poetry.
== Language overview ==
A Ku program consists of haikus arranged sequentially, where each haiku must follow the strict 5-7-5 syllable structure. The program is processed line by line, with each haiku representing a complete instruction block. The interpreter validates syllable counts and processes natural language commands within the poetic constraints.
Execution proceeds through a simple linear flow, reading each haiku from top to bottom. The interpreter maintains a memory system for variables and a stack for temporary calculations. Each haiku is parsed for its semantic meaning while simultaneously validating its poetic structure. If a haiku fails syllable validation, execution halts with an error message indicating the specific line and expected syllable count.
Ku programs use English words as variable names and do math by writing numbers as words. The language has special features that detect when lines rhyme (which makes variable values twice as big) and when words are palindromes (which flips the haiku backwards). Programs can make decisions and repeat actions using special haiku commands. Here's an example of how to store a value in a variable:
<pre>
the moon remembers
five plus two in the night sky
echo moon bright now
</pre>
== History ==
The history of this language is not so old and not so big.
Until recently, I never thought I’d make my own esolang—because, well, it’s not exactly a normal thing to do.
I’ve built some things from scratch before, but this one came to life as part of a YSWS challenge at [https://hackclub.com Hack Club]!
I am happy that I did this!
More info is on Ku's Website
Struggles during development written on this Doc
== Etymology ==
The name ku comes from the Japanese word “句” (ku), which means “verse” or “phrase” and is the term used for each line in a traditional haiku poem.
This reflects the language’s core requirement that every program must be written in the form of a haiku, following the 5-7-5 syllable structure. The name was chosen to emphasize the poetic and artistic nature of the language, blending the realms of programming and poetry.
== Examples ==
'''Variable assignment and print'''
<pre>
the moon remembers
five plus two in the night sky
echo moon bright now
</pre>
<small>Assigns the value 7 to <code>moon</code> and prints it.</small>
'''Function definition'''
<pre>
summon the sun now
the light remembers the day
three plus four is bright
</pre>
<small>Defines a function called <code>the sun</code> that stores and processes values.</small>
'''Function call'''
<pre>
call the sun now
the light remembers
five plus five
</pre>
<small>Calls the previously defined <code>the sun</code> function with new values.</small>
'''Conditional execution (if statement)'''
<pre>
the stars remember
five plus two in the dark night
echo stars shine bright
the sum remember
one plus one in the bright sky
echo sum again
if stars is greater than three
this is a haiku line
this is another line
the sum remember
one plus one in the bright sky
echo sum again
</pre>
<small>Checks if <code>stars</code> is greater than 3; if true, executes the next haiku.</small>
'''If statement (false condition)'''
<pre>
the stars remember
five plus two in the night sky
echo stars again
the sum remember
one plus one in the bright sky
echo sum again
if stars is greater than ten
this is a haiku line
this is another line
</pre>
<small>Checks if <code>stars</code> is greater than 10; since it is not, the next haiku is skipped.</small>
'''If statement (variable not set)'''
<pre>
if moon is greater
the stars remember
one plus one
</pre>
<small>Attempts to check a variable that is not set, which triggers an error or default behavior.</small>
'''Palindrome effect'''
<pre>
the sun remembers
one plus two plus two civic
echo civic now
</pre>
<small>If a palindrome word is detected, the haiku is reversed before output.</small>
'''Regular haiku (assignment and echo)'''
<pre>
the river is calm
three plus three is flowing now
echo river now
</pre>
<small>Assigns 6 to <code>river</code> and prints it; can trigger rhyme or palindrome effects.</small>
'''Rhyme effect (doubles value if last words rhyme)'''
<pre>
the stars remember
five plus two in the dark night
echo stars shine bright
</pre>
<small>If the last words of lines 2 and 3 rhyme ("door" and "more"), the value of <code>score</code> is doubled before printing.</small>
'''Loop (countdown)'''
<pre>
count from three to one
numbers disappear each time
until none remain
</pre>
<small>Counts down from three to one, removing a number each time and printing the result.</small>
'''Function fusion'''
<pre>
summon magic now
civic flows at dawn today
birds fly in the sky
call the magic now
kayak glides on lake today
ripples in the blue
</pre>
<small>
When a function is called in Ku-Lang, the interpreter can "✨ fuse" the summoned function's haiku with the calling haiku to create a new, combined haiku. If either haiku contains a palindrome word (like "civic" or "kayak"), the fused haiku is reversed before output, adding a poetic twist to the program's behavior.
</small>
== Installation ==
'''Install globally'''
<pre>
npm install -g ku-lang
</pre>
<small>Note: On macOS/Linux, you may need to use <code>sudo npm install -g ku-lang</code> if you get permission errors.</small>
== Limitations ==
'''English only:''' Ku-Lang currently only supports English words for both code and variable names. Programs written in other languages will not be recognized as valid.
'''Strict haiku structure:''' Every program must follow the 5-7-5 syllable haiku format. Any deviation will result in an error.
'''Limited number words:''' Arithmetic is only supported for numbers one through ten, using English words.
'''No floating point or negative numbers:''' Only positive integers (one to ten) are supported in expressions.
'''No nested functions:''' Function definitions (“summon”) cannot be nested within other functions.
'''No advanced data types:''' Only basic variables and numbers are supported; there are no arrays, objects, or complex data structures.
'''Word validation:''' Only words found in the included English word list are considered valid; uncommon or invented words may cause errors.
'''Limited error handling:''' While error messages are descriptive, the interpreter may not catch every possible edge case gracefully.
'''No Unicode or emoji support:''' Only standard ASCII English words are supported for code and variable names.
== Packages Used ==
Ku-Lang makes use of the following open-source packages:
'''syllable''': Counts the number of syllables in each line to enforce the 5-7-5 haiku structure.
'''word-list''': Provides a comprehensive list of valid English words for word validation.
'''nodemon''': (Development only) Automatically restarts the interpreter during development.
Note: The current interpreter uses custom logic for rhyme detection and does not directly use any packages for it.
[[Category:Languages]]
[[Category:2024]]
[[Category:Stack-based]]
[[Category:Poetic languages]]
[[Category:Haiku-based languages]]
[[Category:Implemented]]' |
Unified diff of changes made by edit (edit_diff) | '@@ -1,0 +1,252 @@
+{| class="wikitable" style="float:right; margin:0 0 1em 1em; width: 25em;"
+|+ Ku
+|-
+! Paradigm(s)
+| poetic, imperative, stack-based
+|-
+! Designed by
+| [[User:Shivani]]
+|-
+! Created in
+| 2025
+|-
+! Memory system
+| stack-based
+|-
+! Dimensions
+| one-dimensional
+|-
+! Computational class
+| Turing complete
+|-
+! Official interpreter
+| ku-lang
+|-
+! File extension(s)
+| .ku
+|-
+! Influenced by
+| Haiku Poetry (Japanese)
+|-
+|-
+! Syntax style
+| haiku (5-7-5 syllables)
+|-
+! Website
+| [https://github.com/NewSmoke38/ku-lang GitHub repo]
+|-
+! GitHub
+| [https://github.com/NewSmoke38/ku-lang GitHub repo]
+|-
+! NPM package
+| [https://www.npmjs.com/package/ku-lang ku-lang on npm]
+|-
+! More documentation
+| [https://www.npmjs.com/package/ku-lang ku-lang on npm]
+|-
+! Sample program
+| <pre>
+he river is calm
+three plus three is flowing now
+echo river now
+</pre>
+|}
+
+Ku is a poetic one-dimensional [[esoteric programming language]] created in 2024 by [[User:Shivani|Shivani]] where every program must be written in haiku format (5-7-5 syllables). Code combines natural language programming with strict syllable validation, featuring rhyme detection, palindrome word processing, and haiku fusion while maintaining the beauty of traditional Japanese poetry.
+
+
+== Language overview ==
+A Ku program consists of haikus arranged sequentially, where each haiku must follow the strict 5-7-5 syllable structure. The program is processed line by line, with each haiku representing a complete instruction block. The interpreter validates syllable counts and processes natural language commands within the poetic constraints.
+
+Execution proceeds through a simple linear flow, reading each haiku from top to bottom. The interpreter maintains a memory system for variables and a stack for temporary calculations. Each haiku is parsed for its semantic meaning while simultaneously validating its poetic structure. If a haiku fails syllable validation, execution halts with an error message indicating the specific line and expected syllable count.
+
+Ku programs use English words as variable names and do math by writing numbers as words. The language has special features that detect when lines rhyme (which makes variable values twice as big) and when words are palindromes (which flips the haiku backwards). Programs can make decisions and repeat actions using special haiku commands. Here's an example of how to store a value in a variable:
+
+<pre>
+the moon remembers
+five plus two in the night sky
+echo moon bright now
+</pre>
+
+== History ==
+The history of this language is not so old and not so big.
+
+Until recently, I never thought I’d make my own esolang—because, well, it’s not exactly a normal thing to do.
+I’ve built some things from scratch before, but this one came to life as part of a YSWS challenge at [https://hackclub.com Hack Club]!
+
+
+I am happy that I did this!
+
+
+More info is on Ku's Website
+
+Struggles during development written on this Doc
+
+== Etymology ==
+The name ku comes from the Japanese word “句” (ku), which means “verse” or “phrase” and is the term used for each line in a traditional haiku poem.
+
+This reflects the language’s core requirement that every program must be written in the form of a haiku, following the 5-7-5 syllable structure. The name was chosen to emphasize the poetic and artistic nature of the language, blending the realms of programming and poetry.
+
+== Examples ==
+
+'''Variable assignment and print'''
+<pre>
+the moon remembers
+five plus two in the night sky
+echo moon bright now
+</pre>
+<small>Assigns the value 7 to <code>moon</code> and prints it.</small>
+
+'''Function definition'''
+<pre>
+summon the sun now
+the light remembers the day
+three plus four is bright
+</pre>
+<small>Defines a function called <code>the sun</code> that stores and processes values.</small>
+
+'''Function call'''
+<pre>
+call the sun now
+the light remembers
+five plus five
+</pre>
+<small>Calls the previously defined <code>the sun</code> function with new values.</small>
+
+'''Conditional execution (if statement)'''
+<pre>
+the stars remember
+five plus two in the dark night
+echo stars shine bright
+
+the sum remember
+one plus one in the bright sky
+echo sum again
+
+if stars is greater than three
+this is a haiku line
+this is another line
+
+the sum remember
+one plus one in the bright sky
+echo sum again
+</pre>
+<small>Checks if <code>stars</code> is greater than 3; if true, executes the next haiku.</small>
+
+
+'''If statement (false condition)'''
+<pre>
+the stars remember
+five plus two in the night sky
+echo stars again
+
+the sum remember
+one plus one in the bright sky
+echo sum again
+
+if stars is greater than ten
+this is a haiku line
+this is another line
+</pre>
+<small>Checks if <code>stars</code> is greater than 10; since it is not, the next haiku is skipped.</small>
+
+'''If statement (variable not set)'''
+<pre>
+if moon is greater
+the stars remember
+one plus one
+</pre>
+<small>Attempts to check a variable that is not set, which triggers an error or default behavior.</small>
+
+'''Palindrome effect'''
+<pre>
+the sun remembers
+one plus two plus two civic
+echo civic now
+</pre>
+<small>If a palindrome word is detected, the haiku is reversed before output.</small>
+
+'''Regular haiku (assignment and echo)'''
+<pre>
+the river is calm
+three plus three is flowing now
+echo river now
+</pre>
+<small>Assigns 6 to <code>river</code> and prints it; can trigger rhyme or palindrome effects.</small>
+
+'''Rhyme effect (doubles value if last words rhyme)'''
+<pre>
+the stars remember
+five plus two in the dark night
+echo stars shine bright
+</pre>
+<small>If the last words of lines 2 and 3 rhyme ("door" and "more"), the value of <code>score</code> is doubled before printing.</small>
+'''Loop (countdown)'''
+<pre>
+count from three to one
+numbers disappear each time
+until none remain
+</pre>
+<small>Counts down from three to one, removing a number each time and printing the result.</small>
+
+'''Function fusion'''
+<pre>
+summon magic now
+civic flows at dawn today
+birds fly in the sky
+
+call the magic now
+kayak glides on lake today
+ripples in the blue
+</pre>
+<small>
+When a function is called in Ku-Lang, the interpreter can "✨ fuse" the summoned function's haiku with the calling haiku to create a new, combined haiku. If either haiku contains a palindrome word (like "civic" or "kayak"), the fused haiku is reversed before output, adding a poetic twist to the program's behavior.
+</small>
+
+== Installation ==
+'''Install globally'''
+<pre>
+npm install -g ku-lang
+</pre>
+<small>Note: On macOS/Linux, you may need to use <code>sudo npm install -g ku-lang</code> if you get permission errors.</small>
+
+== Limitations ==
+
+'''English only:''' Ku-Lang currently only supports English words for both code and variable names. Programs written in other languages will not be recognized as valid.
+
+'''Strict haiku structure:''' Every program must follow the 5-7-5 syllable haiku format. Any deviation will result in an error.
+
+'''Limited number words:''' Arithmetic is only supported for numbers one through ten, using English words.
+
+'''No floating point or negative numbers:''' Only positive integers (one to ten) are supported in expressions.
+
+'''No nested functions:''' Function definitions (“summon”) cannot be nested within other functions.
+
+'''No advanced data types:''' Only basic variables and numbers are supported; there are no arrays, objects, or complex data structures.
+
+'''Word validation:''' Only words found in the included English word list are considered valid; uncommon or invented words may cause errors.
+
+'''Limited error handling:''' While error messages are descriptive, the interpreter may not catch every possible edge case gracefully.
+
+'''No Unicode or emoji support:''' Only standard ASCII English words are supported for code and variable names.
+
+
+
+== Packages Used ==
+
+Ku-Lang makes use of the following open-source packages:
+
+'''syllable''': Counts the number of syllables in each line to enforce the 5-7-5 haiku structure.
+
+'''word-list''': Provides a comprehensive list of valid English words for word validation.
+
+'''nodemon''': (Development only) Automatically restarts the interpreter during development.
+
+Note: The current interpreter uses custom logic for rhyme detection and does not directly use any packages for it.
+
+[[Category:Languages]]
+[[Category:2024]]
+[[Category:Stack-based]]
+[[Category:Poetic languages]]
+[[Category:Haiku-based languages]]
+[[Category:Implemented]]
' |
New page size (new_size) | 8401 |
Old page size (old_size) | 0 |
Lines added in edit (added_lines) | [
0 => '{| class="wikitable" style="float:right; margin:0 0 1em 1em; width: 25em;"',
1 => '|+ Ku',
2 => '|-',
3 => '! Paradigm(s)',
4 => '| poetic, imperative, stack-based',
5 => '|-',
6 => '! Designed by',
7 => '| [[User:Shivani]]',
8 => '|-',
9 => '! Created in',
10 => '| 2025',
11 => '|-',
12 => '! Memory system',
13 => '| stack-based',
14 => '|-',
15 => '! Dimensions',
16 => '| one-dimensional',
17 => '|-',
18 => '! Computational class',
19 => '| Turing complete',
20 => '|-',
21 => '! Official interpreter',
22 => '| ku-lang',
23 => '|-',
24 => '! File extension(s)',
25 => '| .ku',
26 => '|-',
27 => '! Influenced by',
28 => '| Haiku Poetry (Japanese)',
29 => '|-',
30 => '|-',
31 => '! Syntax style',
32 => '| haiku (5-7-5 syllables)',
33 => '|-',
34 => '! Website',
35 => '| [https://github.com/NewSmoke38/ku-lang GitHub repo]',
36 => '|-',
37 => '! GitHub',
38 => '| [https://github.com/NewSmoke38/ku-lang GitHub repo]',
39 => '|-',
40 => '! NPM package',
41 => '| [https://www.npmjs.com/package/ku-lang ku-lang on npm]',
42 => '|-',
43 => '! More documentation',
44 => '| [https://www.npmjs.com/package/ku-lang ku-lang on npm]',
45 => '|-',
46 => '! Sample program',
47 => '| <pre>',
48 => 'he river is calm',
49 => 'three plus three is flowing now',
50 => 'echo river now',
51 => '</pre>',
52 => '|}',
53 => '',
54 => 'Ku is a poetic one-dimensional [[esoteric programming language]] created in 2024 by [[User:Shivani|Shivani]] where every program must be written in haiku format (5-7-5 syllables). Code combines natural language programming with strict syllable validation, featuring rhyme detection, palindrome word processing, and haiku fusion while maintaining the beauty of traditional Japanese poetry.',
55 => '',
56 => '',
57 => '== Language overview == ',
58 => 'A Ku program consists of haikus arranged sequentially, where each haiku must follow the strict 5-7-5 syllable structure. The program is processed line by line, with each haiku representing a complete instruction block. The interpreter validates syllable counts and processes natural language commands within the poetic constraints.',
59 => '',
60 => 'Execution proceeds through a simple linear flow, reading each haiku from top to bottom. The interpreter maintains a memory system for variables and a stack for temporary calculations. Each haiku is parsed for its semantic meaning while simultaneously validating its poetic structure. If a haiku fails syllable validation, execution halts with an error message indicating the specific line and expected syllable count.',
61 => '',
62 => 'Ku programs use English words as variable names and do math by writing numbers as words. The language has special features that detect when lines rhyme (which makes variable values twice as big) and when words are palindromes (which flips the haiku backwards). Programs can make decisions and repeat actions using special haiku commands. Here's an example of how to store a value in a variable:',
63 => '',
64 => '<pre>',
65 => 'the moon remembers',
66 => 'five plus two in the night sky',
67 => 'echo moon bright now',
68 => '</pre>',
69 => '',
70 => '== History ==',
71 => 'The history of this language is not so old and not so big. ',
72 => '',
73 => 'Until recently, I never thought I’d make my own esolang—because, well, it’s not exactly a normal thing to do.',
74 => 'I’ve built some things from scratch before, but this one came to life as part of a YSWS challenge at [https://hackclub.com Hack Club]!',
75 => '',
76 => '',
77 => 'I am happy that I did this!',
78 => '',
79 => '',
80 => 'More info is on Ku's Website',
81 => '',
82 => 'Struggles during development written on this Doc',
83 => '',
84 => '== Etymology ==',
85 => 'The name ku comes from the Japanese word “句” (ku), which means “verse” or “phrase” and is the term used for each line in a traditional haiku poem. ',
86 => '',
87 => 'This reflects the language’s core requirement that every program must be written in the form of a haiku, following the 5-7-5 syllable structure. The name was chosen to emphasize the poetic and artistic nature of the language, blending the realms of programming and poetry.',
88 => '',
89 => '== Examples ==',
90 => '',
91 => ''''Variable assignment and print'''',
92 => '<pre>',
93 => 'the moon remembers',
94 => 'five plus two in the night sky',
95 => 'echo moon bright now',
96 => '</pre>',
97 => '<small>Assigns the value 7 to <code>moon</code> and prints it.</small>',
98 => '',
99 => ''''Function definition'''',
100 => '<pre>',
101 => 'summon the sun now',
102 => 'the light remembers the day',
103 => 'three plus four is bright',
104 => '</pre>',
105 => '<small>Defines a function called <code>the sun</code> that stores and processes values.</small>',
106 => '',
107 => ''''Function call'''',
108 => '<pre>',
109 => 'call the sun now',
110 => 'the light remembers',
111 => 'five plus five',
112 => '</pre>',
113 => '<small>Calls the previously defined <code>the sun</code> function with new values.</small>',
114 => '',
115 => ''''Conditional execution (if statement)'''',
116 => '<pre>',
117 => 'the stars remember',
118 => 'five plus two in the dark night',
119 => 'echo stars shine bright',
120 => '',
121 => 'the sum remember',
122 => 'one plus one in the bright sky',
123 => 'echo sum again',
124 => '',
125 => 'if stars is greater than three',
126 => 'this is a haiku line',
127 => 'this is another line',
128 => '',
129 => 'the sum remember',
130 => 'one plus one in the bright sky',
131 => 'echo sum again',
132 => '</pre>',
133 => '<small>Checks if <code>stars</code> is greater than 3; if true, executes the next haiku.</small>',
134 => '',
135 => '',
136 => ''''If statement (false condition)'''',
137 => '<pre>',
138 => 'the stars remember',
139 => 'five plus two in the night sky',
140 => 'echo stars again',
141 => '',
142 => 'the sum remember',
143 => 'one plus one in the bright sky',
144 => 'echo sum again',
145 => '',
146 => 'if stars is greater than ten',
147 => 'this is a haiku line',
148 => 'this is another line',
149 => '</pre>',
150 => '<small>Checks if <code>stars</code> is greater than 10; since it is not, the next haiku is skipped.</small>',
151 => '',
152 => ''''If statement (variable not set)'''',
153 => '<pre>',
154 => 'if moon is greater',
155 => 'the stars remember',
156 => 'one plus one',
157 => '</pre>',
158 => '<small>Attempts to check a variable that is not set, which triggers an error or default behavior.</small>',
159 => '',
160 => ''''Palindrome effect'''',
161 => '<pre>',
162 => 'the sun remembers',
163 => 'one plus two plus two civic',
164 => 'echo civic now',
165 => '</pre>',
166 => '<small>If a palindrome word is detected, the haiku is reversed before output.</small>',
167 => '',
168 => ''''Regular haiku (assignment and echo)'''',
169 => '<pre>',
170 => 'the river is calm',
171 => 'three plus three is flowing now',
172 => 'echo river now',
173 => '</pre>',
174 => '<small>Assigns 6 to <code>river</code> and prints it; can trigger rhyme or palindrome effects.</small>',
175 => '',
176 => ''''Rhyme effect (doubles value if last words rhyme)'''',
177 => '<pre>',
178 => 'the stars remember',
179 => 'five plus two in the dark night',
180 => 'echo stars shine bright',
181 => '</pre>',
182 => '<small>If the last words of lines 2 and 3 rhyme ("door" and "more"), the value of <code>score</code> is doubled before printing.</small>',
183 => ''''Loop (countdown)'''',
184 => '<pre>',
185 => 'count from three to one',
186 => 'numbers disappear each time',
187 => 'until none remain',
188 => '</pre>',
189 => '<small>Counts down from three to one, removing a number each time and printing the result.</small>',
190 => '',
191 => ''''Function fusion'''',
192 => '<pre>',
193 => 'summon magic now',
194 => 'civic flows at dawn today',
195 => 'birds fly in the sky',
196 => '',
197 => 'call the magic now',
198 => 'kayak glides on lake today',
199 => 'ripples in the blue',
200 => '</pre>',
201 => '<small>',
202 => 'When a function is called in Ku-Lang, the interpreter can "✨ fuse" the summoned function's haiku with the calling haiku to create a new, combined haiku. If either haiku contains a palindrome word (like "civic" or "kayak"), the fused haiku is reversed before output, adding a poetic twist to the program's behavior.',
203 => '</small>',
204 => '',
205 => '== Installation ==',
206 => ''''Install globally'''',
207 => '<pre>',
208 => 'npm install -g ku-lang',
209 => '</pre>',
210 => '<small>Note: On macOS/Linux, you may need to use <code>sudo npm install -g ku-lang</code> if you get permission errors.</small>',
211 => '',
212 => '== Limitations ==',
213 => '',
214 => ''''English only:''' Ku-Lang currently only supports English words for both code and variable names. Programs written in other languages will not be recognized as valid.',
215 => '',
216 => ''''Strict haiku structure:''' Every program must follow the 5-7-5 syllable haiku format. Any deviation will result in an error.',
217 => '',
218 => ''''Limited number words:''' Arithmetic is only supported for numbers one through ten, using English words.',
219 => '',
220 => ''''No floating point or negative numbers:''' Only positive integers (one to ten) are supported in expressions.',
221 => '',
222 => ''''No nested functions:''' Function definitions (“summon”) cannot be nested within other functions.',
223 => '',
224 => ''''No advanced data types:''' Only basic variables and numbers are supported; there are no arrays, objects, or complex data structures.',
225 => '',
226 => ''''Word validation:''' Only words found in the included English word list are considered valid; uncommon or invented words may cause errors.',
227 => '',
228 => ''''Limited error handling:''' While error messages are descriptive, the interpreter may not catch every possible edge case gracefully.',
229 => '',
230 => ''''No Unicode or emoji support:''' Only standard ASCII English words are supported for code and variable names.',
231 => '',
232 => '',
233 => '',
234 => '== Packages Used ==',
235 => '',
236 => 'Ku-Lang makes use of the following open-source packages:',
237 => '',
238 => ''''syllable''': Counts the number of syllables in each line to enforce the 5-7-5 haiku structure.',
239 => '',
240 => ''''word-list''': Provides a comprehensive list of valid English words for word validation.',
241 => '',
242 => ''''nodemon''': (Development only) Automatically restarts the interpreter during development.',
243 => '',
244 => 'Note: The current interpreter uses custom logic for rhyme detection and does not directly use any packages for it.',
245 => '',
246 => '[[Category:Languages]]',
247 => '[[Category:2024]]',
248 => '[[Category:Stack-based]]',
249 => '[[Category:Poetic languages]]',
250 => '[[Category:Haiku-based languages]]',
251 => '[[Category:Implemented]]'
] |
Unix timestamp of change (timestamp) | '1752402004' |