Welcome to RoseRT Documentation
hello
World
Text
3.10.2022
27.03.2024
Failure
Example of failure
tototototo
- nieco
- dva
- sdf
- sdfsdf
- hello
@startuml
participant Participant as Foo
actor Actor as Foo1
boundary Gertruda as Foo2
control Control as Foo3
entity Entity as Foo4
database Database as Foo5
collections Collections as Foo6
queue Queue as Foo7
Foo -> Foo1 : To actor
Foo -> Foo2 : To boundary
Foo -> Foo3 : To control
Foo -> Foo4 : To entity
Foo -> Foo5 : To database
Foo -> Foo6 : To collections
Foo -> Foo7: To queue
@enduml
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
if items[j] > items[j + 1]:
items[j], items[j + 1] = items[j + 1], items[j]
Tip
hello
hello ah
hshshsh
gekkk
@startuml sign_in_sequence
title "Sign In Sequence Diagram"
actor User
participant "@action authenticate" as authenticate
entity User as UserModel
User -> authenticate: {"email": email, "password": password}