是否有一种编程语言采用缩进作为包含标记? (如果是的话,是哪一个)

发布于 2024-10-25 13:16:22 字数 541 浏览 2 评论 0原文

我想知道编程语言是否使用这样的语法(请注意,从 C# 借用),即用于包含的选项卡,没有任何“End”指令。

class Character
    static string Name;
    static int Level;
    static Inventory Inventory;
    static double Health;

    Character(string name, int level)
        this.Name = name;
        this.Level = level;
        this.Inventory = new Inventory(this);
        this.Health = 1;

    void Die()
        this.Health = 0;

class Inventory
    Character Parent;
    List<Item> Items;

    Inventory(Character parent)
        this.Parent = parent;

I'm wondering if such a syntax (borrowed from C#, mind you) is used by a programming language, i.e., tabs for containment, without any "End" directive.

class Character
    static string Name;
    static int Level;
    static Inventory Inventory;
    static double Health;

    Character(string name, int level)
        this.Name = name;
        this.Level = level;
        this.Inventory = new Inventory(this);
        this.Health = 1;

    void Die()
        this.Health = 0;

class Inventory
    Character Parent;
    List<Item> Items;

    Inventory(Character parent)
        this.Parent = parent;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

﹏半生如梦愿梦如真 2024-11-01 13:16:22
  1. Python
  2. Haskell
  3. Occam

这些是我所知道的。

  1. Python
  2. Haskell
  3. Occam

These are the ones I know of.

咋地 2024-11-01 13:16:22

我知道的是Python。不确定周围是否还有其他人。

One I know if is Python. Not sure if there are others around.

柠檬色的秋千 2024-11-01 13:16:22

Python。

Python.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文