added unity files
All checks were successful
Code Documentation / code-docs (push) Successful in 6s
Project Report / project-report (push) Successful in 4s
Validate Code / validate (push) Successful in 3s

This commit is contained in:
Frank Harris 2026-06-15 12:03:33 -05:00
parent 9042333f51
commit 28c15035a4
62 changed files with 3873 additions and 270 deletions

View file

@ -0,0 +1,7 @@
public class ValidationSampleBroken
{
public int Answer()
{
return 42
}
}

View file

@ -0,0 +1,7 @@
public class ValidationSampleValid
{
public int Answer()
{
return 42;
}
}

View file

@ -0,0 +1 @@
console.log("broken javascript sample"

View file

@ -0,0 +1 @@
console.log("valid javascript sample");

View file

@ -0,0 +1,2 @@
<?php
echo "broken php sample"

View file

@ -0,0 +1,2 @@
<?php
echo "valid php sample";

View file

@ -0,0 +1 @@
print("broken python sample"

View file

@ -0,0 +1 @@
print("valid python sample")