# sbol

`sbool`에 대한 모든 비교 및 연산자는 `bool`과 동일하게 동작합니다.[ ](/seismic-docs-kr/undefined-3/undefined.md)

[ 기본](/seismic-docs-kr/undefined-3/undefined.md)에서 설명된 보편적인 형변환 규칙과 제한 사항이 적용됩니다.

`sbool` 사용 시 정보 유출을 쉽게 방지할 수 있도록, "조건부 실행"에 대한 내용을 [Common mistakes](https://docs.seismic.systems/appendix/gotchas)에서 확인하는 것을 권장합니다.

```solidity
sbool a = sbool(true)
sbool b = sbool(false)

// == 예시
a && b  // false
!b  // true
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://clairetranslation.gitbook.io/seismic-docs-kr/undefined-3/undefined/sbol.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
