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
こんな感じのを
val empty: Stack[Int] = Stack() val stack = empty.push(1).push(2) assert(stack.top == 2) assert(stack.pop.top == 1) assert(stack.pop.pop == empty)
テストとして入れるのがよさそう
The text was updated successfully, but these errors were encountered:
2022/07/04(月)のもくもく会で決まったこと
Sorry, something went wrong.
kmizu
No branches or pull requests
こんな感じのを
テストとして入れるのがよさそう
The text was updated successfully, but these errors were encountered: