diff --git a/readme.md b/readme.md index b75fa2ad..d60f5111 100644 --- a/readme.md +++ b/readme.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project! -## Languages (756 total) +## Languages (757 total) * [!@#$%^&∗()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B) * [05AB1E](%23/05AB1E) @@ -706,6 +706,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Unicorn](u/Unicorn.icn) * [Uniface](u/Uniface.uniface) * [Unlambda](u/Unlambda.unl) +* [Unreal Script](u/Unreal%20Script.uc) * [V](v/V) * [V](v/V.v) * [Vala](v/Vala.vala) diff --git a/u/Unreal Script.uc b/u/Unreal Script.uc new file mode 100644 index 00000000..5d4a5bb4 --- /dev/null +++ b/u/Unreal Script.uc @@ -0,0 +1,7 @@ +class HelloWorld extends Mutator; + +function PostBeginPlay() +{ + Super.PostBeginPlay(); + Log("Hello World"); +}