-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Pyro569/1.1.0
1.1.0
- Loading branch information
Showing
12 changed files
with
63 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ project-scripts/ | |
testrun.sh | ||
testrundebug.sh | ||
build.sh | ||
Main.cpp | ||
Main.cpp | ||
Main.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#include Tokenization.dl; | ||
#import dawnlang.io; | ||
#import dawnlang.io.args; | ||
|
||
function main(args){ | ||
C-Code[ | ||
for(int i = 1; i < argc; i++){ | ||
if(0 == strcmp(argv[i], "-b")){ | ||
printf("Build File\n"); | ||
} | ||
if(0 == strcmp(argv[i], "-br")){ | ||
printf("Build and Run File\n"); | ||
} | ||
if(0 == strcmp(argv[i], "-d")){ | ||
printf("Development Debug Mode\n"); | ||
} | ||
if(0 == strcmp(argv[i], "-version")){ | ||
printf("DawnLang Version 1.1.0\n"); | ||
} | ||
} | ||
]-End | ||
} |
Binary file not shown.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This directory you are in, is a rewrite of the DawnLang compiler using the DawnLang language. The goal for this compiler is to be FULLY introduced by DawnLang 1.5.0 or earlier, however it will be introduced in sectional parts. For example, in the 1.1.0 release of DawnLang, the parser might be written in DawnLang while the rest is still written in C#, and then the 1.2.0 update might have the debugger written in DawnLang etc. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#include print_number_function.dl; | ||
|
||
function main(){ | ||
int twelve = 12; | ||
//call the print_number function from the print_number_function.dl file | ||
print_number(twelve); | ||
} |
This file was deleted.
Oops, something went wrong.