Skip to content

Commit

Permalink
Updated Pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
muit committed Aug 30, 2023
1 parent 64d0465 commit 6acff7a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Libs/Backends/LLVM/Compiler/Src/LLVMBackend/Linker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace rift::LLVM
{
case AST::RiftModuleTarget::Executable:
command.Add("/entry:Main");
command.Add("/SUBSYSTEM:CONSOLE");
command.Add("/subsystem:console");
extension = "exe";
break;
case AST::RiftModuleTarget::Shared:
Expand Down
2 changes: 1 addition & 1 deletion Libs/Pipe
2 changes: 1 addition & 1 deletion Libs/Runtimes/IO/Main.rf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"y": 0.0
},
"2": {
"x": 6.0,
"x": 10.0,
"y": 0.0
}
},
Expand Down
2 changes: 1 addition & 1 deletion Libs/Runtimes/IO/Src/IO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ extern "C"
{
void Print(const char* text)
{
std::cout << text;
std::cout << text << std::endl;
}

void PrintHelloWorld()
Expand Down

0 comments on commit 6acff7a

Please sign in to comment.