Skip to content

Commit

Permalink
Correct versions
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamRagstad committed Aug 6, 2021
1 parent 9513f7f commit 6b9c8b7
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 16 deletions.
3 changes: 1 addition & 2 deletions Cli.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

/**
* @author William Rågstad <[email protected]>
* @version 0.1.0
*
* The CLI is a simple command line interface for the RustScript
* language. It provides a simple way to run RustScript script files
Expand All @@ -12,7 +11,7 @@
* languages like JavaScript, C++ or Python.
*/
public class Cli {
private static final String VERSION = "0.1.0";
private static final String VERSION = "2.1.0";
private static final String DESCRIPTION = "A command line interface tool for the RustScript language.";
private static final String COPYRIGHT = "Copyright (c) 2021 William Rågstad";
private static final String HELP = String.format("""
Expand Down
3 changes: 1 addition & 2 deletions Repl.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
import java.util.NoSuchElementException;

/**
* @author William Rågstad <[email protected]>
* @version 0.1.0
* @author Mikail Khan <[email protected]>, William Rågstad <[email protected]>
*
* The REPL program lets you interact with the RustScript programming
* language and run commands as you go.
Expand Down
1 change: 0 additions & 1 deletion Runner.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

/**
* @author William Rågstad <[email protected]>
* @version 0.1.0
*
* The Runner takes a set of input source code files as command line
* argument, and interprets them by expression. Even if one file fails
Expand Down
1 change: 0 additions & 1 deletion core/Atom.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

/**
* @author Mikail Khan <[email protected]>
* @version 0.1.0
*
* An Atom is any discrete variable, literal or not
*
Expand Down
1 change: 0 additions & 1 deletion core/Expr.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

/**
* @author Mikail Khan <[email protected]>
* @version 0.1.0
*
* An expression, the AST of this language.
*
Expand Down
4 changes: 1 addition & 3 deletions core/Interpreter.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
import java.util.Scanner;

/**
* @author Mikail Khan <[email protected]> & William Rågstad
* <[email protected]>
* @version 0.1.0
* @author Mikail Khan <[email protected]>, William Rågstad <[email protected]>
*
* Because this is an expression based language we don't need to deal
* with complicated scoping and whatnot. This keeps the interpreter
Expand Down
3 changes: 1 addition & 2 deletions core/Parser.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
import core.Expr.MatchCaseExpr;

/**
* @author Mikail Khan <[email protected]>
* @version 0.1.0
* @author Mikail Khan <[email protected]>, William Rågstad <[email protected]>
*
* A Parser takes a String, tokenizes it using a Tokenizer, and then
* converts the flat list of tokens into a meaningful Expr AST which
Expand Down
3 changes: 1 addition & 2 deletions core/Token.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package core;

/**
* @author Mikail Khan <[email protected]>
* @version 0.1.0
* @author Mikail Khan <[email protected]>, William Rågstad <[email protected]>
*
* A token
*
Expand Down
3 changes: 1 addition & 2 deletions core/Tokenizer.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
import java.util.ArrayList;

/**
* @author Mikail Khan <[email protected]>
* @version 0.1.0
* @author Mikail Khan <[email protected]>, William Rågstad <[email protected]>
*
* The Tokenizer takes a String and turns it into a flat list of
* Tokens.
Expand Down

0 comments on commit 6b9c8b7

Please sign in to comment.