文件名称:idk-lang:Dart中实现的未命名编程语言
文件大小:35KB
文件格式:ZIP
更新时间:2024-03-10 14:40:33
language Dart
IDK (我还没有命名。) 该存储库包含Dart中实现的解释性编程语言的代码。 语言并不是什么特别的东西,但是它确实可以工作,按照我的标准,这是相当特别的。 该语言具有非常典型的语法,目前很少有有趣的功能。 例子 你好,世界 print( " Hello, world! " ); 程序和功能 我们不会在程序中使用void ,而会使用proc 。 proc coolThing() { print( " This is a cool thing. " ); } 像许多其他语言一样声明函数。 int coolThingReturningInt() { return 0 ; } 参考 在类型名前面放置@符号,可以创建引用。 // Normal variable. int myInt = 10 ; // Reference to myInt. @int refToMyI
【文件预览】:
idk-lang-master
----bin()
--------language.dart(466B)
----analysis_options.yaml(434B)
----test_code()
--------tests.idk(2KB)
--------references.idk(1KB)
--------code.idk(2KB)
--------access.idk(1KB)
--------loops.idk(452B)
--------dynamics.idk(892B)
----pubspec.lock(272B)
----pubspec.yaml(225B)
----CHANGELOG.md(50B)
----lib()
--------lexer.dart(12KB)
--------runtime()
--------parser()
----README.md(3KB)