nehing_generator 0.1.0 copy "nehing_generator: ^0.1.0" to clipboard
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.

example/main.dart

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)}');
}
1
likes
160
points
346
downloads

Publisher

unverified uploader

Weekly Downloads

A Dart package that generates meaningless but funny random Korean text (known as 'Nehing') for dummy content, testing, games, and fun experiments.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

More

Packages that depend on nehing_generator