not_IO@lemmy.blahaj.zone to Comic Strips@lemmy.worldEnglish · 6 days agodidn't think solemmy.blahaj.zoneimagemessage-square187linkfedilinkarrow-up11.23Karrow-down132file-textcross-posted to: programmer_humor@programming.dev
arrow-up11.19Karrow-down1imagedidn't think solemmy.blahaj.zonenot_IO@lemmy.blahaj.zone to Comic Strips@lemmy.worldEnglish · 6 days agomessage-square187linkfedilinkfile-textcross-posted to: programmer_humor@programming.dev
minus-squareslacktoid@lemmy.mllinkfedilinkEnglisharrow-up3arrow-down1·6 days agoYes to see the people who call themselves coders but can’t write hello world in Python without asking Claude
minus-squareAmyAye@nord.publinkfedilinkEnglisharrow-up1·6 days agomessage1 = “Hello” message2 = “World” message3 = “!” combined = f"{message1} {message2}{message3}" print(combined)
minus-squaresobchak@programming.devlinkfedilinkarrow-up4·6 days agoimport anthropic client = anthropic.Anthropic() message = client.messages.create( model='claude-fable-5', max_tokens=128000, messages=[ {'role': 'user', 'content': 'say "Hello World"'} ], ) print(message.content[0].text)
Yes to see the people who call themselves coders but can’t write hello world in Python without asking Claude
message1 = “Hello” message2 = “World” message3 = “!”
combined = f"{message1} {message2}{message3}"
print(combined)
import anthropic client = anthropic.Anthropic() message = client.messages.create( model='claude-fable-5', max_tokens=128000, messages=[ {'role': 'user', 'content': 'say "Hello World"'} ], ) print(message.content[0].text)Ya fucked up A-A-ron