From 4631b80529ea3f2ede03750f9e9a740c92bc212c Mon Sep 17 00:00:00 2001 From: Hanmin Kim Date: Sun, 18 Feb 2024 22:28:54 -0800 Subject: [PATCH] example: change example to use implemented features --- sample_project/src/main.ing | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sample_project/src/main.ing b/sample_project/src/main.ing index 6940a11..67ff974 100644 --- a/sample_project/src/main.ing +++ b/sample_project/src/main.ing @@ -3,5 +3,9 @@ use root::test::helpful::{helpful_function}; mod test; pub fn main() { - helpful_function(2, 3); + // helpful_function(2, 3); + let a: int = 0; + for (let i: int = 0; i < 9; i += 1) { + a = 5; + }; } \ No newline at end of file