From a14cdafceed45683048da50fd615e4dbf849c721 Mon Sep 17 00:00:00 2001 From: DrMaxNix Date: Tue, 6 Sep 2022 23:42:35 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20use=20simpler=20command=20aliase?= =?UTF-8?q?s=20for=20example=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1fcd6ea..0667c46 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,13 @@ Basic assembly-like high-level programming language ## Example ```asm -move $q 0 +set $q 0 loop: echo $q add $q 1 -ifl $q < 10 +if $q < 10 jump "loop" ```