Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
hg0428 committed Dec 19, 2021
1 parent 056a2d7 commit 7b46fe4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
# -- Project information -----------------------------------------------------

project = 'Aardvark'
copyright = '2020, Hudson Gouge, PlasDev, ZDev1'
author = 'Hudson Gouge, PlasDev, ZDev1'
copyright = '2021, hg0428, PlasDev, ZDev1'
author = 'hg0428, PlasDev, ZDev1'

# The full version, including alpha/beta/rc tags
release = '2020'
release = '0.8.7'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Thank you for choosing Aardvark!

Getting Started:
########
To get started with your first output do: ``output('hello world!\n')``. There you go, you've officially ran your first program! Take note of the ``\n``. If you (like me) get tired quickly of writing ``\n`` you can go ahead and use ``#include anr`` press enter, and then run ``output('hello world!')``. See! works without the ``\n``. We'll talk more about ``#include`` later, but for now thats all you need to know. Comments start with ``/`` and end with ``\``. Clearing the terminal is done by using ``clear()``.
To get started with your first output do: ``output('hello world!\n')``. There you go, you've officially ran your first program! Take note of the ``\n``. If you (like me) get tired quickly of writing ``\n`` you can go ahead and use ``#include anr`` press enter, and then run ``output('hello world!')``. See! works without the ``\n``. We'll talk more about ``#include`` later, but for now thats all you need to know. Comments start with ``//`` and end with ``\\``, but versions below ``0.8.7`` use ``/`` and ``\``. Clearing the terminal is done by using ``clear()``.

A Note About Built In Functions:
#########
Expand All @@ -24,7 +24,7 @@ Math works as usual (Multiplication: *, Division: /, Addition: +, Subtraction: -
Booleans
########
Booleans in Aardvark are ``True`` and ``False``, they can both be assigned to a variable.
Booleans in Aardvark are ``True`` and ``False``, they can both be assigned to a variable. (``true`` and ``false`` for versions 0-0.4 and 0.8.7+)
::
myBoolean = True
if myBoolean == True {
Expand Down
3 changes: 1 addition & 2 deletions examples/fib.adk
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ output(n)
return a + x

}
a = Fib(input("enter num: "))
output(a)
Fib(input("enter num: "))
2 changes: 1 addition & 1 deletion modules/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re
from Aardvark import *
#Aardvark.library
app = flask.Flask(__name__)
app = flask.Flask("app")
regex["isreturnhtml"] = re.compile('[\t ]*return html (.+)')

pages = {}
Expand Down

0 comments on commit 7b46fe4

Please sign in to comment.