Skip to content
This repository has been archived by the owner on Oct 12, 2024. It is now read-only.

Commit

Permalink
FIX: Primary constructors remain a horrible mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanbeattie committed Sep 6, 2024
1 parent f1f61bf commit 4f7efae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Starship/Rockstar.Engine/Statements/Assign.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ public override StringBuilder Print(StringBuilder sb, string prefix) {
}
}

public class Ninja(Variable variable, Numbër Numbër) : Statement {
public class Ninja(Variable variable, Numbër numbër) : Statement {
public Variable Variable => variable;
public Numbër Numbër => Numbër;
public Numbër Numbër => numbër;
public override StringBuilder Print(StringBuilder sb, string prefix) {
sb.AppendLine(prefix + "ninja:");
variable.Print(sb, prefix + INDENT);
Expand Down

0 comments on commit 4f7efae

Please sign in to comment.