<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: maddie lim ✨ </title>
    <description>The latest articles on DEV Community by maddie lim ✨  (@maddievision).</description>
    <link>https://dev.to/maddievision</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F145245%2F449012f4-945c-432e-8ae3-5ca46499e08c.jpg</url>
      <title>DEV Community: maddie lim ✨ </title>
      <link>https://dev.to/maddievision</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/maddievision"/>
    <language>en</language>
    <item>
      <title>WebAssembly Hello World</title>
      <dc:creator>maddie lim ✨ </dc:creator>
      <pubDate>Thu, 29 Apr 2021 22:31:07 +0000</pubDate>
      <link>https://dev.to/maddievision/webassembly-hello-world-5dl7</link>
      <guid>https://dev.to/maddievision/webassembly-hello-world-5dl7</guid>
      <description>&lt;p&gt;played around with WebAssembly and wrote a simple hello world module in WebAssembly text format (WAT) using WebAssembly Studio!&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;(module
  (import "console" "log" (func $print (param i32 i32 )))
  (import "js" "mem" (memory 1))
  (data (i32.const 0) "hello, sparkles")
  (data (i32.const 15) "you are looking cute today :)")
  (func (export "main")
    i32.const 0
    i32.const 15
    call $print
    i32.const 15
    i32.const 29
    call $print
  )
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;sketch: &lt;a href="https://webassembly.studio/?f=0zvla8tncsy" rel="noopener noreferrer"&gt;https://webassembly.studio/?f=0zvla8tncsy&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbzmy5kq6t9wretot8qxg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbzmy5kq6t9wretot8qxg.png" alt="WebAssembly Studio screenshot show hello world code"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
