lastbreath

383
reputation
1
11
#include "lastbreath"

struct Details{
    string Hobbies[2];
    string Interests[3];
    string Languages[3];
} myDetails;

int main(){
    myDetails.Hobbies   = { "Art", "VideoGames" };
    myDetails.Interests = { "Computer graphics", "Compilers", "Gamedev" };
    myDetails.Languages = { "C", "C++", "Python" };
}

// Currently i am working on a Gameboy emulator
// Repo : https://github.com/ani1998ket/GameBoy_emulator