Skip to content

Commit

Permalink
Fix character type binding issue
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamQiufeng committed Aug 27, 2022
1 parent e98f1ed commit e097fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PseudoCode.Core/Runtime/Reflection/FunctionBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class FunctionBinder
[typeof(int)] = "INTEGER",
[typeof(RealNumberType)] = "REAL",
[typeof(string)] = "STRING",
[typeof(char)] = "CHARACTER",
[typeof(char)] = "CHAR",
[typeof(bool)] = "BOOLEAN",
[typeof(DateOnly)] = "DATE",
[typeof(void)] = "NULL"
Expand Down

0 comments on commit e097fe0

Please sign in to comment.