Sunday

Linux Mint Cinnamon: Install Qt for C++ GUI Programming

Start Menu > Administration > Software Manager

Search box > type > Qt-sdk
Double-click the Qt-sdk displayed result on one of the rows
Click the button Install
Wait until the download and installation actions completed

Start Menu > Programming > Qt Creator
Try to write some programs

No comments:

Measure execution time with Julia, example using sorting algorithms

# random integers between 1 and 100 inclusive, generate thousands of them x = rand ( 1 : 100 , 100000 ) @time sort (x; alg=InsertionSort, r...