Skip to content

Commit

Permalink
🎉 first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ramenjuniti committed Mar 2, 2020
0 parents commit d17d29f
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# ha

は? です

## Install

```
go get -u github.com/ramenjuniti/ha
```

## Usage

```
$ ha
? ? ??????
? ? ? ?
?? ? ? ?
? ?????????? ? ?
? ? ? ?
? ? ??
? ? ??
? ? ?
? ? ?
? ?????
? ? ???
? ? ? ? ?? ??
?? ? ?? ?? ??
? ????
```
25 changes: 25 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package main

import "fmt"

func main() {
ha := `
? ? ??????
? ? ? ?
?? ? ? ?
? ?????????? ? ?
? ? ? ?
? ? ??
? ? ??
? ? ?
? ? ?
? ?????
? ? ???
? ? ? ? ?? ??
?? ? ?? ?? ??
? ????
`

fmt.Println(ha)
}

0 comments on commit d17d29f

Please sign in to comment.