- initializated base structure of server - initializated base structure of client - initializated base structure of shared(lib for client and server)
6 lines
134 B
Dart
6 lines
134 B
Dart
import 'package:server/server.dart' as server;
|
|
|
|
void main(List<String> arguments) {
|
|
print('Hello world: ${server.calculate()}!');
|
|
}
|