Skip to content

Commit

Permalink
lab6(2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddanilyuk committed Nov 24, 2020
1 parent 2f2e389 commit e179535
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clangCompiler/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ target_sources(6-07-Swift-IV-82-Danyliuk PRIVATE
Source/Parser.swift
Source/Token.swift

Source/Nodes/FunctionDefinitionNode.swift
Source/Nodes/FunctionNode.swift
Source/Nodes/NumberNode.swift
Source/Nodes/ReturnNode.swift
Source/Nodes/TernaryNode.swift
Expand Down
2 changes: 1 addition & 1 deletion clangCompiler/Testers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ int main() {
int someValue = 22 | (2 * 4);
someValue /= 3;
int result = someValue ? (2 | 10) : ((2.3 * 8) / 2);
int result = someValue ? (2 | (2 * (30 / 6))) : ((2.3 * 8) / 2);
{
result /= 5;
return result | 4;
Expand Down

0 comments on commit e179535

Please sign in to comment.