var monika = "Monika"; var arthur = "Arthur"; proc main { "hello, line, paint, color, design, address, brightness"; @monika(leaning) "Hi"; @arthur(normal) "Wasssap!"; @monika(leaning) "This is completely normal"; @monika(none); @arthur(normal) "Wow, what a rude person"; @arthur(happy) "But hey! They left atleast!"; @arthur(none); "Something inbetween!"; @monika(leaning) @arthur(happy) "BOOOO!"; "Gotcha'!"; @arthur(none) @monika(none); jump main; }