sarsntony (Hanwool Lee)
- Login: sarsntony
- Email: sarsntony@gmail.com
- Registered on: 10/14/2013
- Last sign in: 10/14/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/15/2013
-
10:18 AM Ruby Bug #9019: encoding: EUC-KR or EUC-JP does not seem to work
- The file type was the problem, not the #encoding comment. sorry for the confusion.
10/14/2013
-
05:42 PM Ruby Bug #9019 (Rejected): encoding: EUC-KR or EUC-JP does not seem to work
- ~~~ruby
#encoding: euc-kr
puts "하이"
~~~
ABOVE CODE returns `test.rb:2: invalid multibyte char (EUC-KR)`
~~~ruby
#encoding: utf-8
puts "하이"
~~~
ABOVE CODE returns `하이`
similar behavior on euc-jp as well.