mirror of
https://github.com/godotengine/godot-benchmarks.git
synced 2025-12-31 09:49:13 +03:00
10 lines
146 B
C#
10 lines
146 B
C#
using Godot;
|
|
|
|
public partial class HelloWorld : Benchmark
|
|
{
|
|
public void BenchmarkHelloWorld()
|
|
{
|
|
GD.Print("Hello world!");
|
|
}
|
|
}
|