We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
유형의 값을 읽고 에 대입한 다음 즉시 그 값을 반환하는 표현식. 예시:
read i32 a read i32 b i32 sum = a + b
타입 기본 파서가 없거나, 덮어쓰고자 할 떄 사용. 로 유형 값을 읽어 에 대입한 다음 즉시 그 값을 반환하는 표현식. 예시:
read str s with line
로 값을 읽어 반환하는 표현식. read 과 구분하기 귀찮으므로 나중에 구현
read가 <type> 대신 failble <type>을 반환하게 하기. failible의 자세한 스펙은 관련 이슈를 참조 목표는 다음과 같은 코드(eof나 형식 오류가 아닌 한 계속 읽는 while)를 작성할 수 있도록 하는 것
<type>
failble <type>
while read i32 command? { match command { ... } }
read eof, read whitespaces, read ':' 등등등
read eof
read whitespaces
read ':'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
read
유형의 값을 읽고 에 대입한 다음 즉시 그 값을 반환하는 표현식. 예시:
read with
타입 기본 파서가 없거나, 덮어쓰고자 할 떄 사용. 로 유형 값을 읽어 에 대입한 다음 즉시 그 값을 반환하는 표현식. 예시:
read
로 값을 읽어 반환하는 표현식. read 과 구분하기 귀찮으므로 나중에 구현
read ?
read가
<type>
대신failble <type>
을 반환하게 하기. failible의 자세한 스펙은 관련 이슈를 참조목표는 다음과 같은 코드(eof나 형식 오류가 아닌 한 계속 읽는 while)를 작성할 수 있도록 하는 것
각종 std parser combinator 지원
read eof
,read whitespaces
,read ':'
등등등The text was updated successfully, but these errors were encountered: