<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Examples on JFuncMachine</title>
    <link>https://jfuncmachine.org/examples/index.html</link>
    <description>Recent content in Examples on JFuncMachine</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Tue, 12 Dec 2023 17:50:23 -0500</lastBuildDate>
    <atom:link href="https://jfuncmachine.org/examples/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Hello World!</title>
      <link>https://jfuncmachine.org/examples/helloworld/index.html</link>
      <pubDate>Tue, 12 Dec 2023 17:50:23 -0500</pubDate>
      <guid>https://jfuncmachine.org/examples/helloworld/index.html</guid>
      <description>Introduction Because JFuncMachine is a library that let you describe what kind of code to compile, it is possible to write a simple &amp;ldquo;Hello World&amp;rdquo; program with it. Normally you wouldn&amp;rsquo;t write programs directly in JFuncMachine because it is meant to be the back-end to a language compiler.
A typical Java &amp;ldquo;Hello World&amp;rdquo; program looks like this:
public class HelloWorld { public static void main(String[] args) { System.out.println(&amp;#34;Hello World!&amp;#34;); } }What you can see in the code above is that you need to define a class that contains a static method named main that takes an array of strings as an argument, and then invokes System.</description>
    </item>
  </channel>
</rss>