changeset 15:44e3247ed7c1 draft

modify include to using
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Wed, 30 May 2012 17:01:39 +0900
parents bc647a5f0421
children 5e36456a291c
files http/HttpRequest.k http/test/urlTest.k test/math.k
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/http/HttpRequest.k	Tue May 29 00:22:51 2012 +0900
+++ b/http/HttpRequest.k	Wed May 30 17:01:39 2012 +0900
@@ -1,4 +1,4 @@
-include "URL.k"
+using url.*;
 
 using konoha.socket.*;
 using konoha.io.*;
--- a/http/test/urlTest.k	Tue May 29 00:22:51 2012 +0900
+++ b/http/test/urlTest.k	Wed May 30 17:01:39 2012 +0900
@@ -1,5 +1,4 @@
-include "../URL.k";
-
+using url.*;
 
 void main(String[] args)
 {
--- a/test/math.k	Tue May 29 00:22:51 2012 +0900
+++ b/test/math.k	Wed May 30 17:01:39 2012 +0900
@@ -2,6 +2,7 @@
 
 void main(String[] args) {
 	int x, y;
+	print args.getSize();
 	if (args.size > 2 ) {
 		x = (int)args[0];
 		y = (int)args[1];