Skip to content

Commit

Permalink
tiny optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
LTHCTheMaster committed Sep 13, 2022
1 parent 2aa57a1 commit 3deba08
Show file tree
Hide file tree
Showing 12 changed files with 269 additions and 289 deletions.
Binary file removed LTHCLang_V7.9.0.1.zip
Binary file not shown.
Binary file added LTHCLang_V7.9.0.2.zip
Binary file not shown.
Binary file modified lthcLangInterpreter.jar
Binary file not shown.
148 changes: 131 additions & 17 deletions src/lthclang/Decomp.java

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/lthclang/Reader.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public void prgmReader()
String str;
while((str = br.readLine()) != null)
{
if (str.equalsIgnoreCase("\n")) continue;
prgm.add(str);
}
br.close();
Expand All @@ -51,4 +52,4 @@ public void prgmReader()
}

public List<String> getPrgm() {return prgm;}
}
}
2 changes: 1 addition & 1 deletion src/lthclang/basicinst/numinst/RandomInstSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ public float randomFloat()
Random rand = new Random();
return rand.nextFloat();
}
}
}
Loading

0 comments on commit 3deba08

Please sign in to comment.