This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
これはテスト1ですよ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<project name="SimpleAnt" default="compile"> | |
<target name="compile"> | |
<echo>compileだけど表示するだけで何もしない</echo> | |
</target> | |
<target name="test" depends="compile"> | |
<echo>testだけど表示するだけで何もしない</echo> | |
</target> | |
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.siguremon.sample.junit; | |
import static org.junit.Assert.*; | |
import org.junit.After; | |
import org.junit.Before; | |
import org.junit.Test; | |
public class CalcTest { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.siguremon.sample.junit; | |
public class Calc { | |
public int sum(int x, int y) { | |
return x + y; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<intent-filter> | |
<action android:name="android.intent.action.VIEW" /> | |
<category android:name="android.intent.category.DEFAULT" /> | |
<data android:mimeType="*/*" /> | |
<data android:scheme="file" /> | |
<data android:host="*" /> | |
<data android:pathPattern=".*\\.xxx" /> | |
</intent-filter> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun split-str (string &optional (separator " ")) | |
(split-str-1 string separator)) | |
(defun split-str-1 (string &optional (separator " ") (r nil)) | |
(let ((n (position separator string | |
:from-end t | |
:test #'(lambda (x y) | |
(find y x :test #'string=))))) | |
(if n | |
(split-str-1 (subseq string 0 n) separator (cons (subseq string (1+ n)) r)) |
NewerOlder