We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
目前组合拳、载体完全没有出现在语言中,主要是因为 Monkey 本身就没有任何把类型变成字符串的方式。要把这个加进语言,可以:
Array(...)
Hash(...)
Hash(99, 1, "a", 2)
{ 99: 1, "a": 2 }
fmt::Display
The text was updated successfully, but these errors were encountered:
No branches or pull requests
目前组合拳、载体完全没有出现在语言中,主要是因为 Monkey 本身就没有任何把类型变成字符串的方式。要把这个加进语言,可以:
Array(...)
(PUA 名组合拳),生成传入参数组成的数组Hash(...)
(PUA 名载体),生成传入参数组成的字典——Hash(99, 1, "a", 2)
就是{ 99: 1, "a": 2 }
fmt::Display
,显示其本身的名称The text was updated successfully, but these errors were encountered: