gpt4 book ai didi

xml - 有没有类似 XML 的编程语言?

转载 作者:数据小太阳 更新时间:2023-10-29 02:16:42 25 4
gpt4 key购买 nike

是否有类似 XML 的编程语言?

例如 C 中的这段代码:

int add(int a, int b)
{
int result;
result = a+b;
return result;
}

这样写:

<function name="add">

<parameters>
<parameter name="a" type="int" />
<parameter name="b" type="int" />
</parameters>

<body>

<variables>
<variable name="result" type="int" />
</variables>

<statements>

<statement>
result = a+b
</statement>

</statements>

</body>

<return>result</return>

</function>

最佳答案

是的,有。 Jelly是一种基于 XML 的 java 语言。我经常在谈话中引用它,我用它作为一个糟糕想法的例子。这是一场灾难。

关于xml - 有没有类似 XML 的编程语言?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6747663/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com