<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>GoloScript Documentation Feed</title>
    <link>https://gololang.org</link>
    <description>Latest updates and articles about GoloScript</description>
    <language>en</language>
    <lastBuildDate>Wed, 01 Apr 2026 04:53:11 GMT</lastBuildDate>
    <atom:link href="https://gololang.org/feed.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Dynamic Objects in Golo</title>
      <link>https://gololang.org/GRP-Getting Started-05-DynamicObjects.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Getting Started-05-DynamicObjects.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>A **Dynamic Object** lets you add properties and methods on the fly, without defining a structure in advance.</description>
    </item>
    <item>
      <title>Golo Bridge</title>
      <link>https://gololang.org/GRP-Golo Bridge-Golo and TinyGo.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Golo Bridge-Golo and TinyGo.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>**Golo Bridge** is a Go library for TinyGo that simplifies writing WASM guest modules for GoloScript. It abstracts away the pointer arithmetic and memory encoding required to exchange strings, numbers, and host function calls across the WASM boundary.</description>
    </item>
    <item>
      <title>🟪 WebAssembly Integration in GoloScript</title>
      <link>https://gololang.org/GRP-WASM.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-WASM.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>&gt; - GoloScript + WASM: The power of native performance with the simplicity of scripting.</description>
    </item>
    <item>
      <title>GoloScript</title>
      <link>https://gololang.org/index.html</link>
      <guid isPermaLink="true">https://gololang.org/index.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>&lt;img src=&quot;./assets/logo-golo.png&quot; alt=&quot;golo&quot; width=&quot;300&quot;&gt;</description>
    </item>
    <item>
      <title>GoloScript Structures Guide</title>
      <link>https://gololang.org/GRP-Documentation-Structures.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-Structures.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>This guide presents structures (structs) and augmentation in GoloScript.</description>
    </item>
    <item>
      <title>Templates in GoloScript</title>
      <link>https://gololang.org/GRP-Documentation-Templates.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-Templates.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>Guide to GoloScript&apos;s template system (Go template syntax).</description>
    </item>
    <item>
      <title>GoloScript Time Functions</title>
      <link>https://gololang.org/GRP-Documentation-Time.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-Time.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>Complete guide to time manipulation functions in GoloScript.</description>
    </item>
    <item>
      <title>GoloScript UI Module</title>
      <link>https://gololang.org/GRP-Documentation-UI.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-UI.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>**Terminal User Interface Helpers for GoloScript**</description>
    </item>
    <item>
      <title>Union Types in GoloScript</title>
      <link>https://gololang.org/GRP-Documentation-Union Types.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-Union Types.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>This comprehensive guide explains how to use union types in GoloScript: definition, syntax, common patterns, and augmentation.</description>
    </item>
    <item>
      <title>Workers and Concurrency in GoloScript</title>
      <link>https://gololang.org/GRP-Documentation-Workers.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-Workers.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>Complete guide to concurrent programming with workers, channels, and shared state in GoloScript.</description>
    </item>
    <item>
      <title>Generate Files from Templates</title>
      <link>https://gololang.org/GRP-Documentation-golo new.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-golo new.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>Guide to the `golo new` command for generating Golo source files from templates.</description>
    </item>
    <item>
      <title>Getting Started with Golo</title>
      <link>https://gololang.org/GRP-Getting Started-01-Intro.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Getting Started-01-Intro.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>Create a new file named `hello.golo` and add the following code to print &quot;Hello, GoloScript!&quot; to the console:</description>
    </item>
    <item>
      <title>Control Flow in Golo</title>
      <link>https://gololang.org/GRP-Getting Started-02-Control Flow.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Getting Started-02-Control Flow.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>Golo provides familiar control flow constructs: `if`/`else` for conditionals, C-style `for` loops, `foreach` for iterating over collections, `while` loops, and `match` expressions for pattern-based branching (similar to `switch` but with condition guards via `when`/`then`).</description>
    </item>
    <item>
      <title>Collections in Golo</title>
      <link>https://gololang.org/GRP-Getting Started-03-Collections.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Getting Started-03-Collections.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>GoloScript offers several collection types for different use cases:</description>
    </item>
    <item>
      <title>Structures in Golo</title>
      <link>https://gololang.org/GRP-Getting Started-04-Structures.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Getting Started-04-Structures.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>GoloScript uses **structs** to define custom types and **augmentation** to add methods to them.</description>
    </item>
    <item>
      <title>System Command Execution (exec)</title>
      <link>https://gololang.org/GRP-Documentation-Exec.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-Exec.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>The Golo `exec` module allows you to execute external system commands similar to Go&apos;s `os/exec` package, with idiomatic Golo error handling using exceptions and Result types.</description>
    </item>
    <item>
      <title>File Operations in GoloScript</title>
      <link>https://gololang.org/GRP-Documentation-Files.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-Files.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>This guide covers file and directory operations in Golo-Script.</description>
    </item>
    <item>
      <title>Functions and Closures in GoloScript</title>
      <link>https://gololang.org/GRP-Documentation-Functions-Closures.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-Functions-Closures.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>A comprehensive guide to functions, lambdas, and closures in GoloScript, with practical examples and use cases.</description>
    </item>
    <item>
      <title>Module System and Imports in GoloScript</title>
      <link>https://gololang.org/GRP-Documentation-Imports.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-Imports.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>This guide covers Golo-Script&apos;s module and import system, allowing you to organize your code into reusable modules.</description>
    </item>
    <item>
      <title>JSON Support in GoloScript</title>
      <link>https://gololang.org/GRP-Documentation-JSON.html</link>
      <guid isPermaLink="true">https://gololang.org/GRP-Documentation-JSON.html</guid>
      <pubDate>Wed, 01 Apr 2026 04:53:11 GMT</pubDate>
      <description>This comprehensive guide explains how to use JSON support in GoloScript, including the `toJSON()`, `fromJSON()`, and `escapeJSON()` functions.</description>
    </item>
  </channel>
</rss>