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

Commit

Permalink
att
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusmoutinho committed Jun 28, 2024
1 parent dbf8ae3 commit 37a1773
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Symbiotic-Lua is a template for hybrid development between C and Lua, being very useful for hybrid teams, or to facilitate the creation of programs. It generates a native Windows/Linux binary, without the need to install Lua, so it can be used to build desktop apps, or run in environments that cannot install Lua.
## Install
For instalation just download the [src folder](https://github.com/OUIsolutions/Symbiotic-Lua/archive/refs/tags/v0.04.zip) into your project
For instalation just download the [src folder](https://github.com/OUIsolutions/Symbiotic-Lua/archive/refs/tags/v0.05.zip) into your project

than type to get into the folder (these its important):
```shel
Expand Down
3 changes: 3 additions & 0 deletions src/build/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ int create_lua_code(){

if(strcmp(full_name,"main.lua")==0){
main_code = (char*)current_file->content;
continue;
}
parse_code(final,(char*)current_file->content);
parse_code(final,"\n");
Expand All @@ -77,6 +78,8 @@ int create_lua_code(){
UniversalGarbage_free(garbage);
return 1;
}
parse_code(final,main_code);
parse_code(final,"\n");
stack.format(final,"\";");

dtw.write_string_file_content(OUTPUT,final->rendered_text);
Expand Down

0 comments on commit 37a1773

Please sign in to comment.