J.N.チェイニー&ジョナサン・P・ブレイジー
金子 浩 訳
あらすじ
SimpleDB can be downloaded here: http://bcs.wiley.com/he-bcs/Books?action=resource&bcsId=4570&itemId=0471757160&resourceId=14355
| ;------------------------------------------------------------------------- | |
| ; | |
| ; The WOZ Monitor for the Apple 1 | |
| ; Written by Steve Wozniak 1976 | |
| ; | |
| ;------------------------------------------------------------------------- | |
| .CR 6502 | |
| .OR $FF00 | |
| .TF WOZMON.HEX,HEX,8 |
| Hello World | |
| コンパイラ | |
| +---------+ +------------+ | |
| | main.c | ------> | a.out | | |
| +---------+ +------------+ | |
| ライブラリ関数、シンボル、リンカ |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| double width = 400; | |
| double height = 400; | |
| double thick = 4; | |
| double side = 109; |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyCustomPainter extends CustomPainter { | |
| @override | |
| void paint(Canvas canvas, Size size) { | |
| final paint = Paint() |
| import 'dart:core'; | |
| import 'dart:async'; | |
| import 'dart:io'; | |
| void startServer() { | |
| Future<ServerSocket> serverFuture = ServerSocket.bind('0.0.0.0', 55555); | |
| serverFuture.then((ServerSocket server) { | |
| server.listen((Socket socket) { | |
| socket.listen((List<int> data) { | |
| String result = new String.fromCharCodes(data); |
| //////////////////////////////////////////////////////////////////////////////////////// | |
| // Big Integer Library v. 5.4 | |
| // Created 2000, last modified 2009 | |
| // Leemon Baird | |
| // www.leemon.com | |
| // | |
| // Version history: | |
| // v 5.4 3 Oct 2009 | |
| // - added "var i" to greaterShift() so i is not global. (Thanks to PŽter Szab— for finding that bug) | |
| // |