Skip to content
This repository was archived by the owner on Sep 13, 2024. It is now read-only.

Commit 7fbb857

Browse files
committed
better readme and version change
1 parent ab0c6a8 commit 7fbb857

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,5 @@ The official file extension for Dosato is `.to`, but you can use whatever you wa
3232

3333
## Where can I learn this language?
3434

35-
I have build a downloadable documentation for Dosato, you can download it [here](https://github.com/Robotnik08/Dosato-docs).
35+
I have build a downloadable documentation for Dosato, you can download it [here](https://github.com/Robotnik08/Dosato-docs).<br>
36+
This documentation is also available online [here](https://robotnik08.github.io/Dosato-docs/).<br>

src/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @author Sebastiaan Heins
33
* @file main.c
44
* @brief The main file and entry point of the Dosato interpreter
5-
* @version 0.2
5+
* @version 0.9
66
* @date 05-10-2023
77
*/
88

@@ -19,7 +19,7 @@
1919
#include "includes/ast.h"
2020
#include "includes/process.h"
2121

22-
#define VERSION "0.9"
22+
#define VERSION "0.9.1"
2323
#define PROGRAM_NAME "Dosato"
2424
#define AUTHOR "Sebastiaan Heins"
2525

@@ -59,7 +59,7 @@ int main (int argc, char** argv)
5959
if (strcmp(argv[1], "-v") == 0 || strcmp(argv[1], "--version") == 0)
6060
{
6161
printf("%s Version: %s\n", PROGRAM_NAME, VERSION);
62-
printf("2023, made by %s\n", AUTHOR);
62+
printf("2024, made by %s\n", AUTHOR);
6363

6464
return QUIT(0);
6565
}

0 commit comments

Comments
 (0)