mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
* Simplistic Calculator, initial commit * Add Linux runner * Add macOS runner, update `main.dart` for iOS * Add a test
7 lines
180 B
C++
7 lines
180 B
C++
#include "my_application.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
g_autoptr(MyApplication) app = my_application_new();
|
|
return g_application_run(G_APPLICATION(app), argc, argv);
|
|
}
|