mirror of
https://github.com/godotengine/godot-benchmarks.git
synced 2026-01-06 14:10:20 +03:00
8 lines
135 B
GDScript
8 lines
135 B
GDScript
extends Benchmark
|
|
|
|
const ITERATIONS = 1_000_000
|
|
|
|
func benchmark_create() -> void:
|
|
for i in ITERATIONS:
|
|
var _s: StringName = "Godot"
|