using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TestScript : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
string a;
string b;
a = “真理”;
b = “りんご”;
Debug.Log(a + “は” + b + “が好きです。”);
a = “マリアンヌ”;
b = “メロン”;
Debug.Log(a + “は” + b + “好きです。”);
}
// Update is called once per frame
void Update()
{
//Debug.Log(“連続表示”);
}
}