From a02ec8a97c9602f5ca74f8ad6030cc3859fbe608 Mon Sep 17 00:00:00 2001 From: niansa Date: Mon, 13 Apr 2020 16:05:36 +0200 Subject: [PATCH] Made comments in benchmarks fancier --- benchmark/pilang.pil | 2 +- benchmark/python.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/pilang.pil b/benchmark/pilang.pil index 7189833..0ef6be4 100644 --- a/benchmark/pilang.pil +++ b/benchmark/pilang.pil @@ -1,6 +1,6 @@ # Run via time command to see execution time! - # number^2 until number > 50 + set number,1 marker set,mainloop diff --git a/benchmark/python.py b/benchmark/python.py index aa45a5f..0725157 100644 --- a/benchmark/python.py +++ b/benchmark/python.py @@ -1,6 +1,6 @@ # Run via time command to see execution time! - # number^2 until number > 50 + number = 1 while number < 50: