Updating boilerplate headers to fit standards

This commit is contained in:
DarkFeather 2021-12-01 13:12:27 -06:00
parent e4184ec775
commit 4398103dc4
Signed by: DarkFeather
GPG Key ID: 1CC1E3F4ED06F296
7 changed files with 14 additions and 14 deletions

View File

@ -4,10 +4,10 @@
#
# Description: This file exemplifies printing 'Hello world!' in bash.
#
# Package: AniNIX::Foundation/HelloWorld
# Package: AniNIX/HelloWorld
# Copyright: WTFPL
#
# Author: DarkFeather <darkfeather@aninix.net>
# Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
### String to print
export _helloWorld="Hello world!"

View File

@ -5,10 +5,10 @@
*
* Description: This file exemplifies printing 'Hello world!' in C.
*
* Package: AniNIX::Foundation/HelloWorld
* Package: AniNIX/HelloWorld
* Copyright: WTFPL
*
* Author: DarkFeather <darkfeather@aninix.net>
* Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
*/
static char * message = "Hello world!";

View File

@ -5,10 +5,10 @@ using System;
*
* Description: This file exemplifies printing 'Hello world!' in C#.
*
* Package: AniNIX::Foundation/HelloWorld
* Package: AniNIX/HelloWorld
* Copyright: WTFPL
*
* Author: DarkFeather <darkfeather@aninix.net>
* Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
*/
namespace AniNIX {

View File

@ -5,10 +5,10 @@ import java.lang.System;
*
* Description: This file exemplifies printing 'Hello world!' in Java.
*
* Package: AniNIX::Foundation/HelloWorld
* Package: AniNIX/HelloWorld
* Copyright: WTFPL
*
* Author: DarkFeather <darkfeather@aninix.net>
* Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
*/
/// This class is used exemplify coding standard in Java

View File

@ -4,10 +4,10 @@
#
# Description: This file exemplifies printing 'Hello world!' in PHP.
#
# Package: AniNIX::Foundation/HelloWorld
# Package: AniNIX/HelloWorld
# Copyright: WTFPL
#
# Author: DarkFeather <darkfeather@aninix.net>
# Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
### String to print

View File

@ -4,10 +4,10 @@
#
# Description: This file exemplifies printing 'Hello world!' in perl.
#
# Package: AniNIX::Foundation/HelloWorld
# Package: AniNIX/HelloWorld
# Copyright: WTFPL
#
# Author: DarkFeather <darkfeather@aninix.net>
# Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
### <summary>
### Prints 'Hello world!'

View File

@ -4,10 +4,10 @@
#
# Description: This file exemplifies printing 'Hello world!' in python.
#
# Package: AniNIX::Foundation/HelloWorld
# Package: AniNIX/HelloWorld
# Copyright: WTFPL
#
# Author: DarkFeather <darkfeather@aninix.net>
# Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
### String to print
_helloWorld='Hello world!'