1.2.3 • Published 2 years ago

mollu-lang-web v1.2.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

몰?랭 웹 구현체

설치

$ npm i mollu-lang-web

예제

코드를 실행시킨 후 콘솔에 띄우기

import * as mollu from 'mollu-lang-web'

mollu.setEventListener((text: string) => console.log(text))
mollu.execute('몰!루 모올루??모올루')

REPL 사용하기

import * as mollu from 'mollu-lang-web'

mollu.setEventListener((text: string) => console.log(text))
mollu.startRepl()
mollu.execute('아!루 몰루')
mollu.execute('몰!루 루')
mollu.endRepl()

node.js 환경에서 사용하기

import * as mollu from 'mollu-lang-web'

mollu.setEnvironment('node')
mollu.setEventListener((text: string) => console.log(text))
mollu.execute('몰!루 모올루??모올루')