代码搜索:C-like
找到约 123 项符合「C-like」的源代码
代码结果 123
www.eeworm.com/read/222772/14674178
intro
CAS: The Free Full-Featured 8051 Assembler
Located at the FTP site csd4.csd.uwm.edu in /pub/8051/assem.
This is a 1-pass assembler for the MCS-51 family of microprocessors with the
following feature
www.eeworm.com/read/143816/12839287
readme
FinC is Fava in C! A C-like syntax language. It's designed to apply
to embededd system.
www.eeworm.com/read/108242/6184097
ack syntax.ack
asmprog:
comment ?
statement
asmprog ; asmprog
asmprog comment ? \n asmprog
letter:
[._a-zA-Z]
digit:
[0-9]
identifier:
letter (letter | digit)*
digit [bf]
string:
'C-like string sequence
www.eeworm.com/read/458682/7291721
sh wh-loopc.sh
#!/bin/bash
# wh-loopc.sh: Count to 10 in a "while" loop.
LIMIT=10
a=1
while [ "$a" -le $LIMIT ]
do
echo -n "$a "
let "a+=1"
done # No surprises, so far.
echo; echo
# +==============
www.eeworm.com/read/339483/12231633
sh wh-loopc.sh
#!/bin/bash
# wh-loopc.sh: Count to 10 in a "while" loop.
LIMIT=10
a=1
while [ "$a" -le $LIMIT ]
do
echo -n "$a "
let "a+=1"
done # No surprises, so far.
echo; echo
# +==============
www.eeworm.com/read/138927/13201812
txt topleveldesign.txt
FinC top level design
---------------------
0. FinC over view
FinC is a strong C-like syntax script language. What's mean the strong C-like syntax?
It supports some c style advance data type, such as
www.eeworm.com/read/493005/6403705
unexpected
Unexpected
While calc is C-like, users of C will find some unexpected
surprises in calc syntax and usage. Persons familiar with C should
review this file.
The Comma
=========
www.eeworm.com/read/276599/7073012
java format.java
package corejava;
import java.io.*;
/**
A class for formatting numbers that follows printf conventions.
Also implements C-like atoi and atof functions
www.eeworm.com/read/316867/13515746
java format.java
package corejava;
import java.io.*;
/**
A class for formatting numbers that follows printf conventions.
Also implements C-like atoi and atof functions