Просмотр исходного кода

fix: Update base code in runner.html

Update code in template/runner.html to adhere to the new assignment syntax
Lucas de Souza 2 лет назад
Родитель
Сommit
8bc55a6772
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      templates/runner.html

+ 4 - 4
templates/runner.html

@@ -22,15 +22,15 @@
         <textarea class="ui form control" name="input" id="input" cols="100" rows="30">
             programa {
 
-              const real C = 5.5
+              const real C  5.5
 
               funcao inicio() {
 
-               inteiro a = 8
+               inteiro a  8
                se (a * C > 80) {
-                a = 0
+                a  0
                } senao {
-                 a = -1
+                 a  -1
                }
               }
              }