<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: hualaka</title><link>https://news.ycombinator.com/user?id=hualaka</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 20 Jun 2026 09:50:27 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=hualaka" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by hualaka in "Show HN: I wrote a Java decompiler in pure C language"]]></title><description><![CDATA[
<p>When debugging complex projects, the C language is more flexible and convenient to view data in memory.</p>
]]></description><pubDate>Wed, 04 Jun 2025 08:29:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=44178471</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44178471</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44178471</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>custom backend</p>
]]></description><pubDate>Tue, 03 Jun 2025 07:16:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=44167279</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44167279</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44167279</guid></item><item><title><![CDATA[New comment by hualaka in "RenderFormer: Neural rendering of triangle meshes with global illumination"]]></title><description><![CDATA[
<p>How efficient is neural rendering at this stage for game rendering?</p>
]]></description><pubDate>Mon, 02 Jun 2025 06:02:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=44156149</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44156149</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44156149</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>Calling C code can solve most performance and ecosystem issues. Nature natively implements the system ABI for various operating systems and CPU architectures, enabling C code libraries to be called at extremely low cost. In Go, a separate thread + hook is required to call C functions.<p>I have not yet considered GPU-related features.</p>
]]></description><pubDate>Sun, 01 Jun 2025 17:26:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=44152430</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44152430</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44152430</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>In my view, a compiler is a text transformation tool that converts high-level descriptive text languages into the format required by the target machine. Target machines typically have two specifications: operating system specifications and CPU specifications. As long as the final generated binary encoding satisfies both, it can run on the target machine. For example, Linux systems have ELF program loading specifications, while ARM64 manufacturers have CPU instruction specifications. As long as the CPU can recognize the binary encoding, it can command the CPU to perform the required computations.<p>In concrete implementation, it is usually necessary to convert high-level text languages into an Abstract Syntax Tree (AST), perform necessary detection and optimization based on the AST, and then convert it again into a lower-level Linear Intermediate Representation (LIR). After performing necessary detection and optimization on the LIR, the LIR can be converted into readable assembly instructions required by the target CPU. Further implementing an assembly instruction conversion tool converts the readable assembly instructions into binary encoding that the CPU can recognize.<p>Next, this set of binary encodings is wrapped into an executable file according to the operating system's requirements, ultimately obtaining a file that can run on the target device. Since a compiler is a text transformation tool, it can run this tool on any device - this is the essence of cross-compilation.</p>
]]></description><pubDate>Sun, 01 Jun 2025 17:16:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=44152350</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44152350</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44152350</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>“Tao follows nature” (道法自然) is a phrase from classical Chinese philosophy, and it is the design philosophy behind the nature programming language. It can be understood as being natural and intuitive. I hope that nature can build upon Go's ‘less is more’ philosophy and achieve ‘Tao follows nature.’<p>Unfortunately, nature is not SEO-friendly, so the name has received a lot of criticism. Therefore, I am considering changing it to a name that starts with ”na”</p>
]]></description><pubDate>Sun, 01 Jun 2025 13:04:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=44150582</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44150582</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44150582</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>? Commonly used for nullable types.<p>The tup is an interesting question. I often think about tup(int, bool, string) vs (int, bool, string). I convince myself that there might be a better choice.<p>`var t = (1 as i8, true, false)`  Use automatic inference to replace active type declarations.<p>t.0 vs t[0] is equally difficult to choose, but t[0] is the more commonly used syntax. Using t[n] consistently across map/vec/set/tup might be the more correct decision.</p>
]]></description><pubDate>Sun, 01 Jun 2025 11:27:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=44150110</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44150110</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44150110</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>I really enjoy thinking about such issues. I actually spend a lot of time considering whether to use type prefixes or suffixes, [] or <>, and ultimately settled on “<>”.<p>In my opinion, the change from `<>` to `[]` is a minor adjustment. `<>` is already widely adopted, and I don't want to break with convention for such a small benefit.<p>The position of the type is similarly considered. Postfixing the type has some advantages over prefixing it, but those advantages aren't sufficient for me to break with convention.</p>
]]></description><pubDate>Sun, 01 Jun 2025 11:19:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=44150080</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44150080</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44150080</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>That's a very good point, and I agree with you. I will adjust the relevant wording and use words such as “system” more carefully.</p>
]]></description><pubDate>Sun, 01 Jun 2025 10:12:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149810</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149810</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149810</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>This is the Natural Selection interstellar spacecraft from the Three-Body Problem novel. In fact, the disc-shaped part is the head.<p>I tried to draw this logo myself, but my drawing turned out rather ugly. The lines of the Millennium Falcon closely match my imagination of the Natural Selection spacecraft's appearance, so I borrowed its lines.<p>However, this is not permanent. In fact, the name “Nature” may be modified because it is not SEO-friendly.</p>
]]></description><pubDate>Sun, 01 Jun 2025 10:09:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149800</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149800</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149800</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>Yes, public, I won't add pub syntax. But maybe there will be a label provided for the editor to recognize, but this won't be the main route.<p>#local
fn test() {<p>}</p>
]]></description><pubDate>Sun, 01 Jun 2025 10:05:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149790</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149790</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149790</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>Thank you for finding the discussion from two years ago. The usable version took me another two years to complete. Focusing on implementation caused me to neglect collaboration and promotion, and I fell into many misconceptions.</p>
]]></description><pubDate>Sun, 01 Jun 2025 10:03:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149782</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149782</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149782</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>nature will support more major platforms and wasm. also linux_riscv64 is in the process of being supported and I've done most of the work.</p>
]]></description><pubDate>Sun, 01 Jun 2025 09:56:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149757</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149757</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149757</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>You're right, but nature doesn't seem to be a good name, it gets a lot of criticism because its not search engine friendly. Maybe I should change the name before nature becomes popular.</p>
]]></description><pubDate>Sun, 01 Jun 2025 09:54:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149755</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149755</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149755</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>vlang is a Golang-like programming language. I will use vlang as an example,<p>v has the same syntax as golang and is derived from it. But otherwise, v is moving closer to rust, with immutability, bounds checking, and so on.<p>Here's a discussion of vlang's implementation of coroutine <a href="https://github.com/vlang/v/discussions/11582">https://github.com/vlang/v/discussions/11582</a> Until recently, vlang has not supported coroutines very well<p>The syntax of nature is different from golang. But everything else is the same as golang, including goroutine, GC, channel, cross-compilation and deployment, and even free programming ideas, less is more, and so on.<p>I think these features are the best thing about golang, even in front of all programming languages. That's why I'm trying to see if I can create a better golang.<p>In the early stages of availability, I would not advise others to switch to nature, as this would be irresponsible. When nature is sufficiently advanced, the situation will be different.</p>
]]></description><pubDate>Sun, 01 Jun 2025 09:52:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149745</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149745</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149745</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>thanks, I'll fix it</p>
]]></description><pubDate>Sun, 01 Jun 2025 09:42:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149715</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149715</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149715</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>Plan to add wasm backend</p>
]]></description><pubDate>Sun, 01 Jun 2025 09:38:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149699</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149699</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149699</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>I will consider the issue.</p>
]]></description><pubDate>Sun, 01 Jun 2025 09:37:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149696</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149696</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149696</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>This is an advertisement, and I usually don't put “no LLVM” in the title or use it as a promotional feature.<p>I posted this project on HackNews a few times, but it quickly sank to the bottom. Maybe “no LLVM” might pique some people's interest in the project, so I added it. Actually, I posted this link a few days ago and had already given up on it, but unexpectedly, it suddenly appeared on the HackNews homepage.<p>I now need some attention, which will give the Nature project more capital.</p>
]]></description><pubDate>Sun, 01 Jun 2025 09:36:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149692</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149692</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149692</guid></item><item><title><![CDATA[New comment by hualaka in "Show HN: A new programming language inspired by Go, no LLVM"]]></title><description><![CDATA[
<p>I am more in favor of flat code organization, but I probably won't use C to implement a compiler again, as it involved a lot of unnecessary work. Zig or Rust would be better choices.</p>
]]></description><pubDate>Sun, 01 Jun 2025 09:29:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=44149671</link><dc:creator>hualaka</dc:creator><comments>https://news.ycombinator.com/item?id=44149671</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44149671</guid></item></channel></rss>