From 9343413bb5121d57f4ea03cda209e3ad0e20b81a Mon Sep 17 00:00:00 2001 From: Jonas Klauke Date: Tue, 19 Sep 2023 13:05:20 +0200 Subject: [PATCH] fixed example --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index ece9f35b4d7..d913d88bd55 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -121,7 +121,7 @@ Let's say the following is the target program that we want to analyze: } public static void main(String[] args) { - HelloWorld hw = new HelloWorld; + HelloWorld hw = new HelloWorld(); hw.hello(); }