├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .travis.yml ├── 99bottles ├── 99bottles.aheui └── 99bottles.out ├── 99dan ├── 99dan.aheui └── 99dan.out ├── README.md ├── _tools └── aheuilize │ ├── actac.js │ ├── aheuilize.html │ ├── aheuilize.js │ └── aheuilize.py ├── bahmanghui ├── bahmanghui.aheui ├── bahmanghui.in └── bahmanghui.out ├── factorial ├── factorial.aheui ├── factorial.in └── factorial.out ├── fibonacci ├── fibonacci.codroc.aheui ├── fibonacci.codroc.out ├── fibonacci.galadrien.aheui ├── fibonacci.puzzlet.aheui └── fibonacci.tokigun.aheui ├── hello-world ├── hello-world.puzzlet.aheui ├── hello-world.puzzlet.out ├── hello.puzzlet.aheui └── hello.puzzlet.out ├── integer ├── 2e31-1.aheui ├── 2e31-1.out ├── 2e33-print.aheui ├── 2e33-print.out ├── 2e63-1.aheui ├── 2e63-1.out ├── 2e65-print.aheui ├── 2e65-print.out ├── 2e65.aheui ├── n2e31.aheui ├── n2e31.out ├── n2e63.aheui ├── n2e63.out └── n2e65.aheui ├── literary ├── ha-ut.aheui ├── ha-ut.out ├── huntcook.aheui ├── huntcook.in ├── huntcook.out ├── pokryong.aheui ├── pokryong.in └── pokryong.out ├── literature ├── ddeok.aheui ├── ddeok.out ├── hammer.aheui ├── hammer.out ├── sijo-div.aheui ├── sijo-div.in ├── sijo-div.out ├── sweat.aheui └── sweat.out ├── logo ├── README.md ├── logo.aheui ├── logo.out └── logo.png ├── pi ├── pi.jinseo.aheui ├── pi.jinseo.out ├── pi.puzzlet.aheui └── pi.puzzlet.out ├── quine ├── quine.puzzlet.40col.aheui ├── quine.puzzlet.40col.out ├── quine.puzzlet.aheui ├── quine.puzzlet.out └── twitter │ ├── README.md │ └── quine.ashy_cat.aheui ├── rsa ├── README.md ├── cryptanalyze.aheui ├── decrypt.aheui └── encrypt.aheui ├── standard ├── bieup-char.aheui ├── bieup-char.in ├── bieup-char.out ├── bieup-sign.aheui ├── bieup-sign.in ├── bieup-sign.out ├── bieup.aheui ├── bieup.in ├── bieup.out ├── border.aheui ├── border.out ├── chieut.aheui ├── chieut.out ├── default-direction-nonhangul.aheui ├── default-direction-nonhangul.out ├── default-direction.aheui ├── default-direction.out ├── default-storage.aheui ├── default-storage.out ├── digeut.aheui ├── digeut.out ├── emptyswap.aheui ├── emptyswap.exitcode ├── emptyswap.out ├── exhausted-storage.aheui ├── exhausted-storage.out ├── exitcode.aheui ├── exitcode.exitcode ├── exitcode.out ├── hieut-pop.aheui ├── hieut-pop.out ├── ieunghieut.aheui ├── ieunghieut.out ├── jieut.aheui ├── jieut.out ├── loop.aheui ├── loop.out ├── mieum.aheui ├── mieum.out ├── nieun.aheui ├── nieun.out ├── pieup.aheui ├── pieup.out ├── print.aheui ├── print.out ├── queue.aheui ├── queue.out ├── rieul.aheui ├── rieul.out ├── shebang.aheui ├── shebang.out ├── ssangbieup.aheui ├── ssangbieup.out ├── ssangdigeut.aheui ├── ssangdigeut.out ├── ssangsiot-loop.aheui ├── ssangsiot-loop.out ├── ssangsiot.aheui ├── ssangsiot.out ├── storage.aheui ├── storage.out ├── syllable.aheui ├── syllable.out ├── tieut.aheui ├── tieut.out ├── vowel-2step.aheui ├── vowel-2step.out ├── vowel-advanced.aheui ├── vowel-advanced.out ├── vowel-basic.aheui ├── vowel-basic.out ├── vowel-useless.aheui ├── vowel-useless.out ├── vowel-useless2.aheui └── vowel-useless2.out ├── test.sh └── undefined ├── 2steps-basic.aheui ├── 2steps-basic.out ├── 2steps-reflect.aheui ├── bieup-eof.aheui ├── bieup-eof.in ├── bieup-no-int.aheui ├── bieup-no-int.in ├── bieup-utf16.aheui ├── bieup-utf16.in ├── boundary.aheui ├── chieut.aheui ├── chieut.out └── mieum-out-of-unicode.aheui /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.aheuic 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/.travis.yml -------------------------------------------------------------------------------- /99bottles/99bottles.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/99bottles/99bottles.aheui -------------------------------------------------------------------------------- /99bottles/99bottles.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/99bottles/99bottles.out -------------------------------------------------------------------------------- /99dan/99dan.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/99dan/99dan.aheui -------------------------------------------------------------------------------- /99dan/99dan.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/99dan/99dan.out -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/README.md -------------------------------------------------------------------------------- /_tools/aheuilize/actac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/_tools/aheuilize/actac.js -------------------------------------------------------------------------------- /_tools/aheuilize/aheuilize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/_tools/aheuilize/aheuilize.html -------------------------------------------------------------------------------- /_tools/aheuilize/aheuilize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/_tools/aheuilize/aheuilize.js -------------------------------------------------------------------------------- /_tools/aheuilize/aheuilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/_tools/aheuilize/aheuilize.py -------------------------------------------------------------------------------- /bahmanghui/bahmanghui.aheui: -------------------------------------------------------------------------------- 1 | 밯망희 -------------------------------------------------------------------------------- /bahmanghui/bahmanghui.in: -------------------------------------------------------------------------------- 1 | 밯 -------------------------------------------------------------------------------- /bahmanghui/bahmanghui.out: -------------------------------------------------------------------------------- 1 | 48175 -------------------------------------------------------------------------------- /factorial/factorial.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/factorial/factorial.aheui -------------------------------------------------------------------------------- /factorial/factorial.in: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /factorial/factorial.out: -------------------------------------------------------------------------------- 1 | 120 -------------------------------------------------------------------------------- /fibonacci/fibonacci.codroc.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/fibonacci/fibonacci.codroc.aheui -------------------------------------------------------------------------------- /fibonacci/fibonacci.codroc.out: -------------------------------------------------------------------------------- 1 | 23581321345589144233 -------------------------------------------------------------------------------- /fibonacci/fibonacci.galadrien.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/fibonacci/fibonacci.galadrien.aheui -------------------------------------------------------------------------------- /fibonacci/fibonacci.puzzlet.aheui: -------------------------------------------------------------------------------- 1 | 분받분쌍쌍상빠쌍다쑹 2 | 발또타보라뫃뻐서멍뻐 3 | -------------------------------------------------------------------------------- /fibonacci/fibonacci.tokigun.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/fibonacci/fibonacci.tokigun.aheui -------------------------------------------------------------------------------- /hello-world/hello-world.puzzlet.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/hello-world/hello-world.puzzlet.aheui -------------------------------------------------------------------------------- /hello-world/hello-world.puzzlet.out: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | -------------------------------------------------------------------------------- /hello-world/hello.puzzlet.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/hello-world/hello.puzzlet.aheui -------------------------------------------------------------------------------- /hello-world/hello.puzzlet.out: -------------------------------------------------------------------------------- 1 | 안녕하세요? 2 | -------------------------------------------------------------------------------- /integer/2e31-1.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/integer/2e31-1.aheui -------------------------------------------------------------------------------- /integer/2e31-1.out: -------------------------------------------------------------------------------- 1 | 21474836471 -------------------------------------------------------------------------------- /integer/2e33-print.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/integer/2e33-print.aheui -------------------------------------------------------------------------------- /integer/2e33-print.out: -------------------------------------------------------------------------------- 1 | 8589934592 2 | -------------------------------------------------------------------------------- /integer/2e63-1.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/integer/2e63-1.aheui -------------------------------------------------------------------------------- /integer/2e63-1.out: -------------------------------------------------------------------------------- 1 | 92233720368547758071 -------------------------------------------------------------------------------- /integer/2e65-print.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/integer/2e65-print.aheui -------------------------------------------------------------------------------- /integer/2e65-print.out: -------------------------------------------------------------------------------- 1 | 36893488147419103232 2 | -------------------------------------------------------------------------------- /integer/2e65.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/integer/2e65.aheui -------------------------------------------------------------------------------- /integer/n2e31.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/integer/n2e31.aheui -------------------------------------------------------------------------------- /integer/n2e31.out: -------------------------------------------------------------------------------- 1 | -21474836481 -------------------------------------------------------------------------------- /integer/n2e63.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/integer/n2e63.aheui -------------------------------------------------------------------------------- /integer/n2e63.out: -------------------------------------------------------------------------------- 1 | -92233720368547758081 -------------------------------------------------------------------------------- /integer/n2e65.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/integer/n2e65.aheui -------------------------------------------------------------------------------- /literary/ha-ut.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/literary/ha-ut.aheui -------------------------------------------------------------------------------- /literary/ha-ut.out: -------------------------------------------------------------------------------- 1 | 하읏... -------------------------------------------------------------------------------- /literary/huntcook.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/literary/huntcook.aheui -------------------------------------------------------------------------------- /literary/huntcook.in: -------------------------------------------------------------------------------- 1 | 오리고기 2 | 대파 3 | -------------------------------------------------------------------------------- /literary/huntcook.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/literary/huntcook.out -------------------------------------------------------------------------------- /literary/pokryong.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/literary/pokryong.aheui -------------------------------------------------------------------------------- /literary/pokryong.in: -------------------------------------------------------------------------------- 1 | 1024 -------------------------------------------------------------------------------- /literary/pokryong.out: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /literature/ddeok.aheui: -------------------------------------------------------------------------------- 1 | 발냄새엔 망개떡 밤삶으면 홍두깨떡 -------------------------------------------------------------------------------- /literature/ddeok.out: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /literature/hammer.aheui: -------------------------------------------------------------------------------- 1 | 바쁜 망치에 흘린 못 없다 -------------------------------------------------------------------------------- /literature/hammer.out: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /literature/sijo-div.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/literature/sijo-div.aheui -------------------------------------------------------------------------------- /literature/sijo-div.in: -------------------------------------------------------------------------------- 1 | 249 2 | 12 -------------------------------------------------------------------------------- /literature/sijo-div.out: -------------------------------------------------------------------------------- 1 | 20 -------------------------------------------------------------------------------- /literature/sweat.aheui: -------------------------------------------------------------------------------- 1 | 발받악에 땀 망희 났어 2 | 3 | http://comic.naver.com/webtoon/detail.nhn?titleId=678499&no=15&weekday=fri -------------------------------------------------------------------------------- /literature/sweat.out: -------------------------------------------------------------------------------- 1 | 15 -------------------------------------------------------------------------------- /logo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/logo/README.md -------------------------------------------------------------------------------- /logo/logo.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/logo/logo.aheui -------------------------------------------------------------------------------- /logo/logo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/logo/logo.out -------------------------------------------------------------------------------- /logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/logo/logo.png -------------------------------------------------------------------------------- /pi/pi.jinseo.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/pi/pi.jinseo.aheui -------------------------------------------------------------------------------- /pi/pi.jinseo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/pi/pi.jinseo.out -------------------------------------------------------------------------------- /pi/pi.puzzlet.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/pi/pi.puzzlet.aheui -------------------------------------------------------------------------------- /pi/pi.puzzlet.out: -------------------------------------------------------------------------------- 1 | 314 2 | -------------------------------------------------------------------------------- /quine/quine.puzzlet.40col.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/quine/quine.puzzlet.40col.aheui -------------------------------------------------------------------------------- /quine/quine.puzzlet.40col.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/quine/quine.puzzlet.40col.out -------------------------------------------------------------------------------- /quine/quine.puzzlet.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/quine/quine.puzzlet.aheui -------------------------------------------------------------------------------- /quine/quine.puzzlet.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/quine/quine.puzzlet.out -------------------------------------------------------------------------------- /quine/twitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/quine/twitter/README.md -------------------------------------------------------------------------------- /quine/twitter/quine.ashy_cat.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/quine/twitter/quine.ashy_cat.aheui -------------------------------------------------------------------------------- /rsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/rsa/README.md -------------------------------------------------------------------------------- /rsa/cryptanalyze.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/rsa/cryptanalyze.aheui -------------------------------------------------------------------------------- /rsa/decrypt.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/rsa/decrypt.aheui -------------------------------------------------------------------------------- /rsa/encrypt.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/rsa/encrypt.aheui -------------------------------------------------------------------------------- /standard/bieup-char.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/bieup-char.aheui -------------------------------------------------------------------------------- /standard/bieup-char.in: -------------------------------------------------------------------------------- 1 | 1+한글😃😄 -------------------------------------------------------------------------------- /standard/bieup-char.out: -------------------------------------------------------------------------------- 1 | 1+한글😃😄 -------------------------------------------------------------------------------- /standard/bieup-sign.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/bieup-sign.aheui -------------------------------------------------------------------------------- /standard/bieup-sign.in: -------------------------------------------------------------------------------- 1 | 0 2 | 42 3 | -42 -------------------------------------------------------------------------------- /standard/bieup-sign.out: -------------------------------------------------------------------------------- 1 | 042-42 -------------------------------------------------------------------------------- /standard/bieup.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/bieup.aheui -------------------------------------------------------------------------------- /standard/bieup.in: -------------------------------------------------------------------------------- 1 | 밯3 2 | -------------------------------------------------------------------------------- /standard/bieup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/bieup.out -------------------------------------------------------------------------------- /standard/border.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/border.aheui -------------------------------------------------------------------------------- /standard/border.out: -------------------------------------------------------------------------------- 1 | 369 -------------------------------------------------------------------------------- /standard/chieut.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/chieut.aheui -------------------------------------------------------------------------------- /standard/chieut.out: -------------------------------------------------------------------------------- 1 | 33 -------------------------------------------------------------------------------- /standard/default-direction-nonhangul.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/default-direction-nonhangul.aheui -------------------------------------------------------------------------------- /standard/default-direction-nonhangul.out: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /standard/default-direction.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/default-direction.aheui -------------------------------------------------------------------------------- /standard/default-direction.out: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /standard/default-storage.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/default-storage.aheui -------------------------------------------------------------------------------- /standard/default-storage.out: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /standard/digeut.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/digeut.aheui -------------------------------------------------------------------------------- /standard/digeut.out: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /standard/emptyswap.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/emptyswap.aheui -------------------------------------------------------------------------------- /standard/emptyswap.exitcode: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /standard/emptyswap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standard/exhausted-storage.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/exhausted-storage.aheui -------------------------------------------------------------------------------- /standard/exhausted-storage.out: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /standard/exitcode.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/exitcode.aheui -------------------------------------------------------------------------------- /standard/exitcode.exitcode: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /standard/exitcode.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standard/hieut-pop.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/hieut-pop.aheui -------------------------------------------------------------------------------- /standard/hieut-pop.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standard/ieunghieut.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/ieunghieut.aheui -------------------------------------------------------------------------------- /standard/ieunghieut.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standard/jieut.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/jieut.aheui -------------------------------------------------------------------------------- /standard/jieut.out: -------------------------------------------------------------------------------- 1 | 110 -------------------------------------------------------------------------------- /standard/loop.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/loop.aheui -------------------------------------------------------------------------------- /standard/loop.out: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /standard/mieum.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/mieum.aheui -------------------------------------------------------------------------------- /standard/mieum.out: -------------------------------------------------------------------------------- 1 | 950 -------------------------------------------------------------------------------- /standard/nieun.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/nieun.aheui -------------------------------------------------------------------------------- /standard/nieun.out: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /standard/pieup.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/pieup.aheui -------------------------------------------------------------------------------- /standard/pieup.out: -------------------------------------------------------------------------------- 1 | 81494981 -------------------------------------------------------------------------------- /standard/print.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/print.aheui -------------------------------------------------------------------------------- /standard/print.out: -------------------------------------------------------------------------------- 1 | 97a -------------------------------------------------------------------------------- /standard/queue.aheui: -------------------------------------------------------------------------------- 1 | 상반받뱔우망이 2 | 뭉뻐벋번성 3 | 망망희 -------------------------------------------------------------------------------- /standard/queue.out: -------------------------------------------------------------------------------- 1 | 235223 -------------------------------------------------------------------------------- /standard/rieul.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/rieul.aheui -------------------------------------------------------------------------------- /standard/rieul.out: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /standard/shebang.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/shebang.aheui -------------------------------------------------------------------------------- /standard/shebang.out: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /standard/ssangbieup.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/ssangbieup.aheui -------------------------------------------------------------------------------- /standard/ssangbieup.out: -------------------------------------------------------------------------------- 1 | 8181332 -------------------------------------------------------------------------------- /standard/ssangdigeut.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/ssangdigeut.aheui -------------------------------------------------------------------------------- /standard/ssangdigeut.out: -------------------------------------------------------------------------------- 1 | 45 -------------------------------------------------------------------------------- /standard/ssangsiot-loop.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/ssangsiot-loop.aheui -------------------------------------------------------------------------------- /standard/ssangsiot-loop.out: -------------------------------------------------------------------------------- 1 | 245 -------------------------------------------------------------------------------- /standard/ssangsiot.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/ssangsiot.aheui -------------------------------------------------------------------------------- /standard/ssangsiot.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/ssangsiot.out -------------------------------------------------------------------------------- /standard/storage.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/storage.aheui -------------------------------------------------------------------------------- /standard/storage.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/storage.out -------------------------------------------------------------------------------- /standard/syllable.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/syllable.aheui -------------------------------------------------------------------------------- /standard/syllable.out: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /standard/tieut.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/tieut.aheui -------------------------------------------------------------------------------- /standard/tieut.out: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /standard/vowel-2step.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/vowel-2step.aheui -------------------------------------------------------------------------------- /standard/vowel-2step.out: -------------------------------------------------------------------------------- 1 | 3596 -------------------------------------------------------------------------------- /standard/vowel-advanced.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/vowel-advanced.aheui -------------------------------------------------------------------------------- /standard/vowel-advanced.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/vowel-advanced.out -------------------------------------------------------------------------------- /standard/vowel-basic.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/vowel-basic.aheui -------------------------------------------------------------------------------- /standard/vowel-basic.out: -------------------------------------------------------------------------------- 1 | 369 -------------------------------------------------------------------------------- /standard/vowel-useless.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/vowel-useless.aheui -------------------------------------------------------------------------------- /standard/vowel-useless.out: -------------------------------------------------------------------------------- 1 | 351620E% -------------------------------------------------------------------------------- /standard/vowel-useless2.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/standard/vowel-useless2.aheui -------------------------------------------------------------------------------- /standard/vowel-useless2.out: -------------------------------------------------------------------------------- 1 | 351620E% -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/test.sh -------------------------------------------------------------------------------- /undefined/2steps-basic.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/undefined/2steps-basic.aheui -------------------------------------------------------------------------------- /undefined/2steps-basic.out: -------------------------------------------------------------------------------- 1 | 32 -------------------------------------------------------------------------------- /undefined/2steps-reflect.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/undefined/2steps-reflect.aheui -------------------------------------------------------------------------------- /undefined/bieup-eof.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/undefined/bieup-eof.aheui -------------------------------------------------------------------------------- /undefined/bieup-eof.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /undefined/bieup-no-int.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/undefined/bieup-no-int.aheui -------------------------------------------------------------------------------- /undefined/bieup-no-int.in: -------------------------------------------------------------------------------- 1 | 숫자아님 -------------------------------------------------------------------------------- /undefined/bieup-utf16.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/undefined/bieup-utf16.aheui -------------------------------------------------------------------------------- /undefined/bieup-utf16.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/undefined/bieup-utf16.in -------------------------------------------------------------------------------- /undefined/boundary.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/undefined/boundary.aheui -------------------------------------------------------------------------------- /undefined/chieut.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/undefined/chieut.aheui -------------------------------------------------------------------------------- /undefined/chieut.out: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /undefined/mieum-out-of-unicode.aheui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheui/snippets/HEAD/undefined/mieum-out-of-unicode.aheui --------------------------------------------------------------------------------