Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGriefs committed Jan 20, 2022
0 parents commit 65273aa
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
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`.
4 changes: 4 additions & 0 deletions hagen.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// hagen in browser context
while (true) {
console.warn('hagen')
}
5 changes: 5 additions & 0 deletions hagen.node.js
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')
}

0 comments on commit 65273aa

Please sign in to comment.