mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
18 lines
425 B
D
18 lines
425 B
D
unittest
|
|
{
|
|
testScene = new Scene
|
|
(
|
|
longArgument, longArgument, longArgument, longArgument, longArgument, longArgument,
|
|
delegate(Scene scene)
|
|
{
|
|
import std.stdio;
|
|
|
|
if (!scene.alreadyEntered)
|
|
{
|
|
fwriteln("This is a test. This is a test. This is a test. This is a test. This is a test. Test12.");
|
|
auto p = cast(Portal)sceneManager.previousScene;
|
|
scene.destroyCurrentScript();
|
|
}
|
|
}
|
|
);
|
|
}
|