nehing_generator 0.1.0
nehing_generator: ^0.1.0 copied to clipboard
A Dart package that generates meaningless but funny random Korean text (known as 'Nehing') for dummy content, testing, games, and fun experiments.
import 'package:nehing_generator/nehing_generator.dart';
void main() {
print('=== 기본 생성 ===');
print(Nehing.generate());
print(Nehing.generate(length: 4));
print(Nehing.generate(finalConsonant: false));
print('\n=== 감정 의성어 ===');
print('행복: ${Nehing.generateEmotion(EmotionType.happy)}');
print('슬픔: ${Nehing.generateEmotion(EmotionType.sad)}');
print('화남: ${Nehing.generateEmotion(EmotionType.angry)}');
print('놀람: ${Nehing.generateEmotion(EmotionType.surprised)}');
print('웃음: ${Nehing.generateEmotion(EmotionType.laughing)}');
}