Divine Link
divinelink.bsky.social
Divine Link
@divinelink.bsky.social
Posting in Serbian, English and Italian
# Your first Python app.

print('Hello, world!')
October 6, 2025 at 11:50 AM
// Your first c# program

using System;

namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
October 6, 2025 at 11:49 AM
// Your First C++ Program

#include

int main() {
std::cout << "Hello World!";
return 0;
}
October 6, 2025 at 11:47 AM
Hello World
November 17, 2024 at 8:56 PM