Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
furesoft authored Oct 3, 2024
2 parents 73d3856 + 8b8c13f commit 57ac6a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class Program
}
```

For more detailed instructions and advanced usage, please refer to the [Wiki](https://github.com/furesoft/Silverfly/wiki).
For more detailed instructions and advanced usage, please refer to the [Docs]([https://github.com/furesoft/Silverfly/wiki](https://furesoft.gitbook.io/silverfly)).
A great example can be found [here](https://github.com/furesoft/Silverfly/tree/main/Source/Samples/Sample.FuncLanguage)

## Contributing
Expand Down
3 changes: 1 addition & 2 deletions Source/Samples/Sample.Brainfuck/Nodes/OperationNode.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using Silverfly;
using Silverfly;
using Silverfly.Nodes;

namespace Sample.Brainfuck.Nodes;

public record OperationNode(Token Token) : AstNode
{

}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Silverfly.Nodes;
using Silverfly.Nodes;
using Silverfly.Nodes.Operators;
using Silverfly.Parselets;

Expand Down Expand Up @@ -63,7 +63,7 @@ private static double ConvertPoeticNumber(List<string> tmp)
}
else
{
numValue = numValue * 10 + digit;
numValue = (numValue * 10) + digit;
}
}
}
Expand Down

0 comments on commit 57ac6a9

Please sign in to comment.