Files
godot-benchmarks/benchmarks/gdscript/hello_world.gd
Emmanouil Papadeas b77d4b6414 Add Mandelbrot set and Lua-ported algorithm benchmarks (#68)
* Port binary trees and merkle trees
* Port nbody and spectral_norm
* Format nbody
* Create mandelbrot_set.gd
* Add algorithm credits
* Create hello_world.gd
* Make some benchmark inputs smaller so they complete faster
2024-06-05 16:44:09 +02:00

6 lines
81 B
GDScript

extends Benchmark
func benchmark_hello_world() -> void:
print("Hello world!")