Files
godot-benchmarks/benchmarks/csharp/HelloWorld.cs
2024-08-04 22:53:11 +02:00

10 lines
146 B
C#

using Godot;
public partial class HelloWorld : Benchmark
{
public void BenchmarkHelloWorld()
{
GD.Print("Hello world!");
}
}