-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 65273aa
Showing
3 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Hagen | ||
|
||
## Purpose | ||
|
||
In as many languages as possible, 'hagen' must be spammed without exiting, followed by a new line and must always be lowercase. | ||
|
||
## Contribute | ||
|
||
You can add a missing language by [forking](https://github.com/MrGriefs/hagen/fork) and submitting a [pull request](https://github.com/MrGriefs/hagen/pulls) with your change. | ||
The newly added language filenames must follow the format `hagen.:ext`, where `:ext` is the language file extension. | ||
If this file already exists and not the same language, you can prefix the extension with some form of specification. i.e. Node.js becomes `hagen.node.js`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// hagen in browser context | ||
while (true) { | ||
console.warn('hagen') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const process = require('node:process'); | ||
|
||
while (true) { | ||
process.stdout.write('hagen\n') | ||
} |